diff --git a/.coveragerc b/.coveragerc
index d5d8d859..c682e6aa 100644
--- a/.coveragerc
+++ b/.coveragerc
@@ -1,7 +1,19 @@
[run]
omit =
- buzz/whisper_cpp.py
+ buzz/whisper_cpp/*
+ buzz/transcriber/local_whisper_cpp_server_transcriber.py
*_test.py
+ demucs/*
+ whisper_diarization/*
+ deepmultilingualpunctuation/*
+ ctc_forced_aligner/*
+
+[report]
+exclude_also =
+ if sys.platform == "win32":
+ if platform.system\(\) == "Windows":
+ if platform.system\(\) == "Linux":
+ if platform.system\(\) == "Darwin":
[html]
directory = coverage/html
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 72cc0aa6..19e33ae7 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,4 +1,3 @@
----
name: CI
on:
push:
@@ -15,72 +14,88 @@ concurrency:
jobs:
test:
runs-on: ${{ matrix.os }}
+ env:
+ BUZZ_DISABLE_TELEMETRY: true
strategy:
fail-fast: false
matrix:
include:
- - os: macos-13
+ - os: macos-15-intel
- os: macos-latest
- os: windows-latest
- - os: ubuntu-20.04
- os: ubuntu-22.04
- - os: ubuntu-24.04
+ - os: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- - uses: actions/setup-python@v5
+ # Should be removed with next update to whisper.cpp
+ - name: Downgrade Xcode
+ uses: maxim-lobanov/setup-xcode@v1
with:
- python-version: "3.11.9"
+ xcode-version: '16.0.0'
+ if: matrix.os == 'macos-latest'
- - name: Install Poetry Action
- uses: snok/install-poetry@v1.3.1
+ - name: Set up Python
+ uses: actions/setup-python@v5
with:
- virtualenvs-create: true
- virtualenvs-in-project: true
+ python-version: "3.12"
+
+ - name: Install Vulkan SDK
+ if: "startsWith(matrix.os, 'ubuntu-') || matrix.os == 'windows-latest'"
+ uses: humbletim/install-vulkan-sdk@v1.2
+ with:
+ version: 1.4.309.0
+ cache: true
+
+ - name: Install uv
+ uses: astral-sh/setup-uv@v6
- name: Load cached venv
- id: cached-poetry-dependencies
+ id: cached-uv-dependencies
uses: actions/cache@v4
with:
path: .venv
- key: venv-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('**/poetry.lock') }}
+ key: venv-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('**/uv.lock') }}
- - name: Load cached Whisper models
- id: cached-whisper-models
- uses: actions/cache@v4
- with:
- path: |
- ~/Library/Caches/Buzz
- ~/.cache/whisper
- ~/.cache/huggingface
- ~/AppData/Local/Buzz/Buzz/Cache
- key: whisper-models
-
- - uses: FedericoCarboni/setup-ffmpeg@v3.1
+ - uses: AnimMouse/setup-ffmpeg@v1
id: setup-ffmpeg
with:
- ffmpeg-version: release
- architecture: 'x64'
- github-token: ${{ github.server_url == 'https://github.com' && github.token || '' }}
+ version: ${{ matrix.os == 'macos-15-intel' && '7.1.1' || matrix.os == 'macos-latest' && '80' || '8.0' }}
- - name: Install dependencies
- run: poetry install
+ - name: Test ffmpeg
+ run: ffmpeg -i ./testdata/audio-long.mp3 ./testdata/audio-long.wav
+
+ - name: Add msbuild to PATH
+ uses: microsoft/setup-msbuild@v2
+ if: runner.os == 'Windows'
- name: Install apt dependencies
run: |
sudo apt-get update
- if [ "$(lsb_release -rs)" != "24.04" ]; then
+
+ if [ "$(lsb_release -rs)" == "22.04" ]; then
sudo apt-get install libegl1-mesa
+
+ # Add ubuntu-toolchain-r PPA for newer libstdc++6 with GLIBCXX_3.4.32
+ sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
+ sudo apt-get update
+ sudo apt-get install -y libstdc++6
fi
- sudo apt-get install libyaml-dev libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-shape0 libxcb-cursor0 libportaudio2 gettext libpulse0 libgl1-mesa-dev
+
+ sudo apt-get install libyaml-dev libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-shape0 libxcb-cursor0 libportaudio2 gettext libpulse0 libgl1-mesa-dev libvulkan-dev ccache
if: "startsWith(matrix.os, 'ubuntu-')"
+ - name: Install dependencies
+ run: uv sync
+
- name: Test
run: |
- poetry run make test
+ uv run make test
shell: bash
+ env:
+ PYTHONFAULTHANDLER: "1"
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4
@@ -92,11 +107,14 @@ jobs:
build:
runs-on: ${{ matrix.os }}
+ timeout-minutes: 90
+ env:
+ BUZZ_DISABLE_TELEMETRY: true
strategy:
fail-fast: false
matrix:
include:
- - os: macos-13
+ - os: macos-15-intel
- os: macos-latest
- os: windows-latest
steps:
@@ -104,87 +122,130 @@ jobs:
with:
submodules: recursive
- - uses: actions/setup-python@v5
+ # Should be removed with next update to whisper.cpp
+ - name: Downgrade Xcode
+ uses: maxim-lobanov/setup-xcode@v1
with:
- python-version: "3.11.9"
+ xcode-version: '16.0.0'
+ if: matrix.os == 'macos-latest'
- - name: Install Poetry Action
- uses: snok/install-poetry@v1.3.1
+ - name: Set up Python
+ uses: actions/setup-python@v5
with:
- virtualenvs-create: true
- virtualenvs-in-project: true
+ python-version: "3.12"
+
+ - name: Install Vulkan SDK
+ if: "startsWith(matrix.os, 'ubuntu-') || matrix.os == 'windows-latest'"
+ uses: humbletim/install-vulkan-sdk@v1.2
+ with:
+ version: 1.4.309.0
+ cache: true
+
+ - name: Install uv
+ uses: astral-sh/setup-uv@v6
- name: Load cached venv
- id: cached-poetry-dependencies
+ id: cached-uv-dependencies
uses: actions/cache@v4
with:
path: .venv
- key: venv-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('**/poetry.lock') }}
+ key: venv-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('**/uv.lock') }}
- - uses: FedericoCarboni/setup-ffmpeg@v3.1
- id: setup-ffmpeg
+ - name: Install Inno Setup on Windows
+ uses: crazy-max/ghaction-chocolatey@v3
with:
- ffmpeg-version: release
- architecture: 'x64'
- github-token: ${{ github.server_url == 'https://github.com' && github.token || '' }}
-
- - name: Install dependencies
- run: poetry install
-
- - uses: ruby/setup-ruby@v1
- with:
- ruby-version: "3.0" # Not needed with a .ruby-version file
- bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- if: "startsWith(matrix.os, 'ubuntu-')"
+ args: install innosetup --yes
+ if: runner.os == 'Windows'
- name: Install apt dependencies
run: |
sudo apt-get update
- if [ "$(lsb_release -rs)" != "24.04" ]; then
+
+ if [ "$(lsb_release -rs)" == "22.04" ]; then
sudo apt-get install libegl1-mesa
+
+ # Add ubuntu-toolchain-r PPA for newer libstdc++6 with GLIBCXX_3.4.32
+ sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
+ sudo apt-get update
+ sudo apt-get install -y libstdc++6
fi
- sudo apt-get install libyaml-dev libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-shape0 libxcb-cursor0 libportaudio2 gettext libpulse0 libgl1-mesa-dev
+
+ sudo apt-get install libyaml-dev libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-shape0 libxcb-cursor0 libportaudio2 gettext libpulse0 libgl1-mesa-dev libvulkan-dev ccache
+ if: "startsWith(matrix.os, 'ubuntu-')"
+
+ - name: Install dependencies
+ run: uv sync
+
+ - uses: AnimMouse/setup-ffmpeg@v1
+ id: setup-ffmpeg
+ with:
+ version: ${{ matrix.os == 'macos-15-intel' && '7.1.1' || matrix.os == 'macos-latest' && '80' || '8.0' }}
+
+ - name: Install MSVC for Windows
+ run: |
+ if [ "$RUNNER_OS" == "Windows" ]; then
+ uv add msvc-runtime
+ uv pip install -U torch==2.8.0+cu129 torchaudio==2.8.0+cu129 --index-url https://download.pytorch.org/whl/cu129
+ uv pip install nvidia-cublas-cu12==12.9.1.4 nvidia-cuda-cupti-cu12==12.9.79 nvidia-cuda-runtime-cu12==12.9.79 --extra-index-url https://pypi.ngc.nvidia.com
+
+ uv cache clean
+ uv run pip cache purge
+ fi
+ shell: bash
+
+ - name: Add msbuild to PATH
+ uses: microsoft/setup-msbuild@v2
+ if: runner.os == 'Windows'
+
+ - uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: "3.0"
+ bundler-cache: true
if: "startsWith(matrix.os, 'ubuntu-')"
- name: Install FPM
run: gem install fpm
if: "startsWith(matrix.os, 'ubuntu-')"
+ - name: Clear space on Windows
+ if: runner.os == 'Windows'
+ run: |
+ rm 'C:\Android\android-sdk\' -r -force
+ rm 'C:\Program Files (x86)\Google\' -r -force
+ rm 'C:\tools\kotlinc\' -r -force
+ rm 'C:\tools\php\' -r -force
+ rm 'C:\selenium\' -r -force
+ shell: pwsh
+
- name: Bundle
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
brew install create-dmg
-
- # kill XProtect to prevent https://github.com/actions/runner-images/issues/7522
+
sudo pkill -9 XProtect >/dev/null || true;
while pgrep XProtect; do sleep 3; done;
- # create variables
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
- # import certificate and provisioning profile from secrets
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
- # create temporary keychain
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH
security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
- # import certificate to keychain
security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
security list-keychain -d user -s $KEYCHAIN_PATH
- # store notarytool credentials
xcrun notarytool store-credentials --apple-id "$APPLE_ID" --password "$APPLE_APP_PASSWORD" --team-id "$APPLE_TEAM_ID" notarytool --validate
- poetry run make bundle_mac
+ uv run make bundle_mac
elif [ "$RUNNER_OS" == "Windows" ]; then
cp -r ./dll_backup ./buzz/
- poetry run make bundle_windows
+ uv run make bundle_windows
fi
env:
@@ -203,43 +264,54 @@ jobs:
name: Buzz-${{ runner.os }}-${{ runner.arch }}
path: |
dist/Buzz*-windows.exe
+ dist/Buzz*-windows-*.bin
dist/Buzz*-mac.dmg
build_wheels:
runs-on: ${{ matrix.os }}
+ env:
+ BUZZ_DISABLE_TELEMETRY: true
strategy:
fail-fast: false
matrix:
- # macos-13 is an intel runner, macos-14 is apple silicon
- os: [ubuntu-latest, windows-latest, macos-13, macos-14]
+ os: [ubuntu-latest, windows-latest, macos-15-intel, macos-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- - name: Copy Windows DLLs
- run: |
- if [ "$RUNNER_OS" == "Windows" ]; then
- cp -r ./dll_backup ./buzz/
- fi
- shell: bash
+ # Should be removed with next update to whisper.cpp
+ - name: Downgrade Xcode
+ uses: maxim-lobanov/setup-xcode@v1
+ with:
+ xcode-version: '16.0.0'
+ if: matrix.os == 'macos-latest'
+
+ - name: Install Vulkan SDK
+ if: "startsWith(matrix.os, 'ubuntu-') || matrix.os == 'windows-latest'"
+ uses: humbletim/install-vulkan-sdk@v1.2
+ with:
+ version: 1.4.309.0
+ cache: true
+
+ - name: Install uv
+ uses: astral-sh/setup-uv@v6
- name: Build wheels
- uses: pypa/cibuildwheel@v2.19.2
- env:
- CIBW_ARCHS_WINDOWS: "auto"
- CIBW_ARCHS_MACOS: "universal2"
- CIBW_ARCHS_LINUX: "auto"
+ run: uv build --wheel
+ shell: bash
- uses: actions/upload-artifact@v4
with:
- name: cibw-wheels-${{ matrix.os }}
- path: ./wheelhouse/*.whl
+ name: buzz-wheel-${{ runner.os }}-${{ runner.arch }}
+ path: ./dist/*.whl
publish_pypi:
- needs: [ build_wheels, test ]
+ needs: [build_wheels, test]
runs-on: ubuntu-latest
+ env:
+ BUZZ_DISABLE_TELEMETRY: true
environment: pypi
permissions:
id-token: write
@@ -247,7 +319,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
- pattern: cibw-*
+ pattern: buzz-wheel-*
path: dist
merge-multiple: true
@@ -258,14 +330,16 @@ jobs:
release:
runs-on: ${{ matrix.os }}
+ env:
+ BUZZ_DISABLE_TELEMETRY: true
strategy:
fail-fast: false
matrix:
include:
- - os: macos-13
+ - os: macos-15-intel
- os: macos-latest
- os: windows-latest
- needs: [ build, test ]
+ needs: [build, test]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
@@ -277,39 +351,52 @@ jobs:
name: Buzz-${{ runner.os }}-${{ runner.arch }}
- name: Rename .dmg files
+ if: runner.os == 'macOS'
run: |
for file in Buzz*.dmg; do
mv "$file" "${file%.dmg}-${{ runner.arch }}.dmg"
done
- - name: Install Poetry Action
- uses: snok/install-poetry@v1.3.1
- with:
- virtualenvs-create: true
- virtualenvs-in-project: true
-
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
Buzz*-unix.tar.gz
- Buzz*-windows.exe
- Buzz*-mac.dmg
+ Buzz*.exe
+ Buzz*.bin
+ Buzz*.dmg
- deploy_brew_cask:
- runs-on: macos-latest
- needs: [ release ]
- if: startsWith(github.ref, 'refs/tags/')
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: recursive
- - name: Install Poetry Action
- uses: snok/install-poetry@v1.3.1
- with:
- virtualenvs-create: true
- virtualenvs-in-project: true
- - name: Upload to Brew
- run: make upload_brew
- env:
- HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
+# Brew Cask deployment fails and the app is deprecated on Brew.
+# deploy_brew_cask:
+# runs-on: macos-latest
+# env:
+# BUZZ_DISABLE_TELEMETRY: true
+# needs: [release]
+# if: startsWith(github.ref, 'refs/tags/')
+# steps:
+# - uses: actions/checkout@v4
+# with:
+# submodules: recursive
+#
+# # Should be removed with next update to whisper.cpp
+# - name: Downgrade Xcode
+# uses: maxim-lobanov/setup-xcode@v1
+# with:
+# xcode-version: '16.0.0'
+# if: matrix.os == 'macos-latest'
+#
+# - name: Install uv
+# uses: astral-sh/setup-uv@v6
+#
+# - name: Set up Python
+# uses: actions/setup-python@v5
+# with:
+# python-version: "3.12"
+#
+# - name: Install dependencies
+# run: uv sync
+#
+# - name: Upload to Brew
+# run: uv run make upload_brew
+# env:
+# HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
diff --git a/.github/workflows/manual-build.yml b/.github/workflows/manual-build.yml
index f1ea1c04..ecbae668 100644
--- a/.github/workflows/manual-build.yml
+++ b/.github/workflows/manual-build.yml
@@ -9,6 +9,8 @@ concurrency:
jobs:
build:
runs-on: ${{ matrix.os }}
+ env:
+ BUZZ_DISABLE_TELEMETRY: true
strategy:
fail-fast: false
matrix:
@@ -69,6 +71,8 @@ jobs:
build-snap:
runs-on: ubuntu-latest
+ env:
+ BUZZ_DISABLE_TELEMETRY: true
outputs:
snap: ${{ steps.snapcraft.outputs.snap }}
steps:
diff --git a/.github/workflows/snapcraft.yml b/.github/workflows/snapcraft.yml
index 5e2d189e..d4f95dc7 100644
--- a/.github/workflows/snapcraft.yml
+++ b/.github/workflows/snapcraft.yml
@@ -14,27 +14,58 @@ concurrency:
jobs:
build:
- runs-on: ubuntu-latest
+ runs-on: ubuntu-24.04
+ timeout-minutes: 90
+ env:
+ BUZZ_DISABLE_TELEMETRY: true
outputs:
snap: ${{ steps.snapcraft.outputs.snap }}
steps:
- - name: Maximize build space
- uses: easimon/maximize-build-space@master
- with:
- root-reserve-mb: 20000
- swap-size-mb: 1024
- remove-dotnet: 'true'
- remove-android: 'true'
- remove-haskell: 'true'
- remove-codeql: 'true'
+ # Ideas from https://github.com/orgs/community/discussions/25678
+ - name: Remove unused build tools
+ run: |
+ sudo apt-get remove -y azure-cli google-cloud-sdk hhvm google-chrome-stable firefox powershell mono-devel || true
+ sudo apt-get autoremove -y
+ sudo apt-get clean
+ python -m pip cache purge
+ rm -rf /opt/hostedtoolcache || true
+ - name: Check available disk space
+ run: |
+ echo "=== Disk space ==="
+ df -h
+ echo "=== Memory ==="
+ free -h
- uses: actions/checkout@v4
with:
submodules: recursive
- - uses: snapcore/action-build@v1
+ - name: Install Snapcraft and dependencies
+ run: |
+ set -x
+ # Ensure snapd is ready
+ sudo systemctl start snapd.socket
+ sudo snap wait system seed.loaded
+
+ echo "=== Installing snapcraft ==="
+ sudo snap install --classic snapcraft
+
+ echo "=== Installing gnome extension dependencies ==="
+ sudo snap install gnome-46-2404 || { echo "Failed to install gnome-46-2404"; sudo journalctl -u snapd --no-pager -n 50; exit 1; }
+ sudo snap install gnome-46-2404-sdk || { echo "Failed to install gnome-46-2404-sdk"; sudo journalctl -u snapd --no-pager -n 50; exit 1; }
+
+ echo "=== Installing build-snaps ==="
+ sudo snap install --classic astral-uv || { echo "Failed to install astral-uv"; sudo journalctl -u snapd --no-pager -n 50; exit 1; }
+
+ echo "=== Installed snaps ==="
+ snap list
+ - name: Check disk space before build
+ run: df -h
+ - name: Build snap
id: snapcraft
- - run: |
- sudo apt-get update
- sudo apt-get install libportaudio2 libtbb-dev
+ env:
+ SNAPCRAFT_BUILD_ENVIRONMENT: host
+ run: |
+ sudo -E snapcraft pack --verbose --destructive-mode
+ echo "snap=$(ls *.snap)" >> $GITHUB_OUTPUT
- run: sudo snap install --devmode *.snap
- run: |
cd $HOME
diff --git a/.gitignore b/.gitignore
index 6224dd8f..291ecb53 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,19 +5,21 @@ build/
.coverage*
!.coveragerc
.env
+.DS_Store
htmlcov/
coverage.xml
.idea/
.venv/
+venv/
+.claude/
# whisper_cpp
-libwhisper.*
-libwhisper-coreml.*
whisper_cpp
-whisper_cpp.exe
-whisper.dll
-buzz/whisper_cpp.py
-buzz/whisper_cpp_coreml.py
+*.exe
+*.dll
+*.dylib
+*.so
+buzz/whisper_cpp/*
# Internationalization - compiled binaries
*.mo
@@ -29,3 +31,6 @@ benchmarks.json
*.egg-info
/coverage/
/wheelhouse/
+/.flatpak-builder
+/repo
+/nemo_msdd_configs
diff --git a/.gitmodules b/.gitmodules
index fa83e220..5ce5bc73 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +1,15 @@
[submodule "whisper.cpp"]
path = whisper.cpp
url = https://github.com/ggerganov/whisper.cpp
+[submodule "whisper_diarization"]
+ path = whisper_diarization
+ url = https://github.com/MahmoudAshraf97/whisper-diarization
+[submodule "demucs_repo"]
+ path = demucs_repo
+ url = https://github.com/MahmoudAshraf97/demucs.git
+[submodule "deepmultilingualpunctuation"]
+ path = deepmultilingualpunctuation
+ url = https://github.com/oliverguhr/deepmultilingualpunctuation.git
+[submodule "ctc_forced_aligner"]
+ path = ctc_forced_aligner
+ url = https://github.com/MahmoudAshraf97/ctc-forced-aligner.git
diff --git a/.python-version b/.python-version
new file mode 100644
index 00000000..e4fba218
--- /dev/null
+++ b/.python-version
@@ -0,0 +1 @@
+3.12
diff --git a/Buzz.spec b/Buzz.spec
index fbbe2a69..f590f0f5 100644
--- a/Buzz.spec
+++ b/Buzz.spec
@@ -1,4 +1,5 @@
# -*- mode: python ; coding: utf-8 -*-
+import os
import os.path
import platform
import shutil
@@ -9,6 +10,7 @@ from buzz.__version__ import VERSION
datas = []
datas += collect_data_files("torch")
+datas += collect_data_files("demucs")
datas += copy_metadata("tqdm")
datas += copy_metadata("torch")
datas += copy_metadata("regex")
@@ -20,12 +22,34 @@ datas += copy_metadata("tokenizers")
datas += copy_metadata("huggingface-hub")
datas += copy_metadata("safetensors")
datas += copy_metadata("pyyaml")
+datas += copy_metadata("julius")
+datas += copy_metadata("openunmix")
+datas += copy_metadata("lameenc")
+datas += copy_metadata("diffq")
+datas += copy_metadata("einops")
+datas += copy_metadata("hydra-core")
+datas += copy_metadata("hydra-colorlog")
+datas += copy_metadata("museval")
+datas += copy_metadata("submitit")
+datas += copy_metadata("treetable")
+datas += copy_metadata("soundfile")
+datas += copy_metadata("dora-search")
+datas += copy_metadata("lhotse")
# Allow transformers package to load __init__.py file dynamically:
# https://github.com/chidiwilliams/buzz/issues/272
datas += collect_data_files("transformers", include_py_files=True)
+datas += collect_data_files("faster_whisper", include_py_files=True)
+datas += collect_data_files("stable_whisper", include_py_files=True)
datas += collect_data_files("whisper")
+datas += collect_data_files("demucs", include_py_files=True)
+datas += collect_data_files("whisper_diarization", include_py_files=True)
+datas += collect_data_files("deepmultilingualpunctuation", include_py_files=True)
+datas += collect_data_files("ctc_forced_aligner", include_py_files=True, excludes=["build"])
+datas += collect_data_files("nemo", include_py_files=True)
+datas += collect_data_files("lightning_fabric", include_py_files=True)
+datas += collect_data_files("pytorch_lightning", include_py_files=True)
datas += [("buzz/assets/*", "assets")]
datas += [("buzz/locale", "locale")]
datas += [("buzz/schema.sql", ".")]
@@ -38,32 +62,65 @@ if DEBUG:
else:
options = []
-binaries = [
- (
- "buzz/whisper.dll" if platform.system() == "Windows" else "buzz/libwhisper.*",
- ".",
- ),
- (shutil.which("ffmpeg"), "."),
- (shutil.which("ffprobe"), "."),
-]
+def find_dependency(name: str) -> str:
+ paths = os.environ["PATH"].split(os.pathsep)
+ candidates = []
+ for path in paths:
+ exe_path = os.path.join(path, name)
+ if os.path.isfile(exe_path):
+ candidates.append(exe_path)
-# Include libwhisper-coreml.dylib on Apple Silicon
-if platform.system() == "Darwin" and platform.machine() == "arm64":
- binaries.append(("buzz/libwhisper-coreml.dylib", "."))
+ # Check for chocolatery shims
+ shim_path = os.path.normpath(os.path.join(path, "..", "lib", "ffmpeg", "tools", "ffmpeg", "bin", name))
+ if os.path.isfile(shim_path):
+ candidates.append(shim_path)
+
+ if not candidates:
+ return None
+
+ # Pick the largest file
+ return max(candidates, key=lambda f: os.path.getsize(f))
+
+if platform.system() == "Windows":
+ binaries = [
+ (find_dependency("ffmpeg.exe"), "."),
+ (find_dependency("ffprobe.exe"), "."),
+ ]
+else:
+ binaries = [
+ (shutil.which("ffmpeg"), "."),
+ (shutil.which("ffprobe"), "."),
+ ]
+
+binaries.append(("buzz/whisper_cpp/*", "buzz/whisper_cpp"))
-# Include dll_backup folder and its contents on Windows
if platform.system() == "Windows":
datas += [("dll_backup", "dll_backup")]
+ datas += collect_data_files("msvc-runtime")
binaries.append(("dll_backup/SDL2.dll", "dll_backup"))
- binaries.append(("dll_backup/whisper.dll", "dll_backup"))
a = Analysis(
["main.py"],
pathex=[],
binaries=binaries,
datas=datas,
- hiddenimports=[],
+ hiddenimports=[
+ "dora", "dora.log",
+ "julius", "julius.core", "julius.resample",
+ "openunmix", "openunmix.filtering",
+ "lameenc",
+ "diffq",
+ "einops",
+ "hydra", "hydra.core", "hydra.core.global_hydra",
+ "hydra_colorlog",
+ "museval",
+ "submitit",
+ "treetable",
+ "soundfile",
+ "_soundfile_data",
+ "lhotse",
+ ],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
diff --git a/CLAUDE.md b/CLAUDE.md
new file mode 100644
index 00000000..1d471238
--- /dev/null
+++ b/CLAUDE.md
@@ -0,0 +1 @@
+- Use uv to run tests and any scripts
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
old mode 100644
new mode 100755
index cb8d3705..abb1a73c
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -28,7 +28,8 @@ What version of the Buzz are you using? On what OS? What are steps to reproduce
**Logs**
Log files contain valuable information about what the Buzz was doing before the issue occurred. You can get the logs like this:
-* Mac and Linux run the app from the terminal and check the output.
+* Linux run the app from the terminal and check the output.
+* Mac get logs from `~/Library/Logs/Buzz`.
* Windows paste this into the Windows Explorer address bar `%USERPROFILE%\AppData\Local\Buzz\Buzz\Logs` and check the logs file.
**Test on latest version**
@@ -45,16 +46,15 @@ Linux versions get also pushed to the snap. To install latest development versio
1. Clone the repository `git clone --recursive https://github.com/chidiwilliams/buzz.git`
2. Enter repo folder `cd buzz`
-3. Install Poetry `sudo apt-get install python3-poetry`
-4. Activate the virtual environment `poetry shell`
-5. Install the dependencies `poetry install`
-6. Install system dependencies you may be missing
+3. Install uv `curl -LsSf https://astral.sh/uv/install.sh | sh` (or see [uv installation docs](https://docs.astral.sh/uv/getting-started/installation/))
+4. Install system dependencies you may be missing
```
sudo apt-get install --no-install-recommends libyaml-dev libtbb-dev libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-shape0 libxcb-cursor0 libportaudio2 gettext libpulse0 ffmpeg
```
On versions prior to Ubuntu 24.04 install `sudo apt-get install --no-install-recommends libegl1-mesa`
-7. Build Buzz `poetry build`
-8. Run Buzz `python -m buzz`
+
+5. Install the dependencies `uv sync`
+6. Run Buzz `uv run buzz`
#### Necessary dependencies for Faster Whisper on GPU
@@ -64,23 +64,24 @@ On versions prior to Ubuntu 24.04 install `sudo apt-get install --no-install-rec
#### Error for Faster Whisper on GPU `Could not load library libcudnn_ops_infer.so.8`
You need to add path to the library to the `LD_LIBRARY_PATH` environment variable.
- Check exact path to your poetry virtual environment, it may be different for you.
+ Check exact path to your uv virtual environment, it may be different for you.
```
- export LD_LIBRARY_PATH=/home/PutYourUserNameHere/.cache/pypoetry/virtualenvs/buzz-captions-JjGFxAW6-py3.12/lib/python3.12/site-packages/nvidia/cudnn/lib/:$LD_LIBRARY_PATH
+ export LD_LIBRARY_PATH=/path/to/buzz/.venv/lib/python3.12/site-packages/nvidia/cudnn/lib/:$LD_LIBRARY_PATH
```
+#### For Whisper.cpp you will need to install Vulkan SDK
+
+ Follow the instructions for your distribution https://vulkan.lunarg.com/doc/sdk/latest/linux/getting_started.html
### Mac
1. Clone the repository `git clone --recursive https://github.com/chidiwilliams/buzz.git`
2. Enter repo folder `cd buzz`
-3. Install Poetry `brew install poetry`
-4. Activate the virtual environment `poetry shell`
-5. Install the dependencies `poetry install`
-6. Install system dependencies you may be missing `brew install ffmpeg`
-7. Build Buzz `poetry build`
-8. Run Buzz `python -m buzz`
+3. Install uv `curl -LsSf https://astral.sh/uv/install.sh | sh` (or `brew install uv`)
+4. Install system dependencies you may be missing `brew install ffmpeg`
+5. Install the dependencies `uv sync`
+6. Run Buzz `uv run buzz`
@@ -92,52 +93,31 @@ Assumes you have [Git](https://git-scm.com/downloads) and [python](https://www.p
```
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
```
-2. Install the GNU make. `choco install make`
+2. Install the build tools. `choco install make cmake`
3. Install the ffmpeg. `choco install ffmpeg`
-4. Install [MSYS2](https://www.msys2.org/), follow [this guide](https://sajidifti.medium.com/how-to-install-gcc-and-gdb-on-windows-using-msys2-tutorial-0fceb7e66454).
-5. Install Poetry, paste this info Windows PowerShell line by line. [More info](https://python-poetry.org/docs/)
-```
-(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -
-
-[Environment]::SetEnvironmentVariable("Path", $env:Path + ";%APPDATA%\pypoetry\venv\Scripts", "User")
-
-Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
-```
-6. Add poetry to PATH. `%APPDATA%\Python\Scripts`
-7. Restart Windows.
-8. Clone the repository `git clone --recursive https://github.com/chidiwilliams/buzz.git`
-9. Enter repo folder `cd buzz`
-10. Activate the virtual environment `poetry shell`
-11. Install the dependencies `poetry install`
+4. Download [Build Tools for Visual Studio 2022](https://visualstudio.microsoft.com/vs/older-downloads/) and install "Desktop development with C++" workload.
+5. Add location of `namke` to your PATH environment variable. Usually it is `C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.44.35207\bin\Hostx64\x86`
+6. Install Vulkan SDK from https://vulkan.lunarg.com/sdk/home
+7. Clone the repository `git clone --recursive https://github.com/chidiwilliams/buzz.git`
+8. Enter repo folder `cd buzz`
+9. Install uv `powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"`
+10. Install the dependencies `uv sync`
+11. Build Whisper.cpp `uv run make buzz/whisper_cpp`
12. `cp -r .\dll_backup\ .\buzz\`
-13. Build Buzz `poetry build`
-14. Run Buzz `python -m buzz`
+13. Run Buzz `uv run buzz`
+
+Note: It should be safe to ignore any "syntax errors" you see during the build. Buzz will work. Also you can ignore any errors for FFmpeg. Buzz tries to load FFmpeg by several different means and some of them throw errors, but FFmpeg should eventually be found and work.
#### GPU Support
-GPU support on Windows is possible for Buzz that ir installed from the source code or with `pip`.
-Use the instructions above to install the Buzz from the source code or run `pip install buzz-captions`
-and then follow the instructions below to enable CUDA GPU support. For pip installation it is recommended to use
-a separate [virtual environment](https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/).
+GPU support on Windows with Nvidia GPUs is included out of the box in the `.exe` installer.
-To enable GPU support first ensure CUDA 12.1 is installed - https://developer.nvidia.com/cuda-12-1-0-download-archive
-Other versions of CUDA 12 should also work.
-
-Switch torch library to GPU version. It must match the CUDA version installed, see https://pytorch.org/get-started/locally/ .
+To add GPU support for source or `pip` installed version switch torch library to GPU version. For more info see https://pytorch.org/get-started/locally/ .
```
-pip3 uninstall torch torchaudio
-pip3 install torch==2.2.1+cu121 torchaudio==2.2.1+cu121 --index-url https://download.pytorch.org/whl/cu121
+uv add --index https://download.pytorch.org/whl/cu128 torch==2.7.1+cu128 torchaudio==2.7.1+cu128
+uv add --index https://pypi.ngc.nvidia.com nvidia-cublas-cu12==12.8.3.14 nvidia-cuda-cupti-cu12==12.8.57 nvidia-cuda-nvrtc-cu12==12.8.61 nvidia-cuda-runtime-cu12==12.8.57 nvidia-cudnn-cu12==9.7.1.26 nvidia-cufft-cu12==11.3.3.41 nvidia-curand-cu12==10.3.9.55 nvidia-cusolver-cu12==11.7.2.55 nvidia-cusparse-cu12==12.5.4.2 nvidia-cusparselt-cu12==0.6.3 nvidia-nvjitlink-cu12==12.8.61 nvidia-nvtx-cu12==12.8.55
```
To use Faster Whisper on GPU, install the following libraries:
* [cuBLAS](https://developer.nvidia.com/cublas)
-* [cuDNN](https://developer.nvidia.com/cudnn)
-
-Ensure ffmpeg dependencies are installed
-```
-pip3 uninstall ffmpeg ffmpeg-python
-pip3 install ffmpeg
-pip3 install ffmpeg-python
-```
-
-Run Buzz `python -m buzz`
\ No newline at end of file
+* [cuDNN](https://developer.nvidia.com/cudnn)
\ No newline at end of file
diff --git a/Makefile b/Makefile
index 6819259c..4beb3323 100644
--- a/Makefile
+++ b/Makefile
@@ -1,112 +1,109 @@
-version := $$(poetry version -s)
-version_escaped := $$(echo ${version} | sed -e 's/\./\\./g')
+# Change also in pyproject.toml and buzz/__version__.py
+version := 1.4.4
mac_app_path := ./dist/Buzz.app
mac_zip_path := ./dist/Buzz-${version}-mac.zip
mac_dmg_path := ./dist/Buzz-${version}-mac.dmg
bundle_windows: dist/Buzz
- iscc //DAppVersion=${version} installer.iss
+ iscc installer.iss
bundle_mac: dist/Buzz.app codesign_all_mac zip_mac notarize_zip staple_app_mac dmg_mac
bundle_mac_unsigned: dist/Buzz.app zip_mac dmg_mac_unsigned
-UNAME_S := $(shell uname -s)
-UNAME_M := $(shell uname -m)
-
-LIBWHISPER :=
-ifeq ($(OS), Windows_NT)
- LIBWHISPER=whisper.dll
-else
- ifeq ($(UNAME_S), Darwin)
- LIBWHISPER=libwhisper.dylib
- else
- LIBWHISPER=libwhisper.so
- endif
-endif
-
clean:
ifeq ($(OS), Windows_NT)
- -del /f buzz\$(LIBWHISPER) 2> nul
- -del /f buzz\whisper_cpp.py 2> nul
- -rmdir /s /q whisper.cpp\build 2> nul
- -rmdir /s /q dist 2> nul
- -rm -f buzz/$(LIBWHISPER)
- -rm -f buzz/whisper_cpp.py
- -rm -rf whisper.cpp/build || true
- -rm -rf dist/* || true
+ -rmdir /s /q buzz\whisper_cpp
+ -rmdir /s /q whisper.cpp\build
+ -rmdir /s /q dist
+ -Remove-Item -Recurse -Force buzz\whisper_cpp
+ -Remove-Item -Recurse -Force whisper.cpp\build
+ -Remove-Item -Recurse -Force dist\*
+ -rm -rf buzz/whisper_cpp
+ -rm -rf whisper.cpp/build
+ -rm -rf dist/*
+ -rm -rf buzz/__pycache__ buzz/**/__pycache__ buzz/**/**/__pycache__ buzz/**/**/**/__pycache__
+ -for /d /r buzz %%d in (__pycache__) do @if exist "%%d" rmdir /s /q "%%d"
else
- rm -f buzz/$(LIBWHISPER)
- rm -f buzz/whisper_cpp.py
- rm -f buzz/libwhisper-coreml.dylib || true
- rm -f buzz/whisper_cpp_coreml.py || true
+ rm -rf buzz/whisper_cpp || true
rm -rf whisper.cpp/build || true
rm -rf dist/* || true
+ find buzz -type d -name "__pycache__" -exec rm -rf {} + 2>/dev/null || true
endif
-COVERAGE_THRESHOLD := 75
+COVERAGE_THRESHOLD := 70
-test: buzz/whisper_cpp.py translation_mo
- pytest -s -vv --cov=buzz --cov-report=xml --cov-report=html --benchmark-skip --cov-fail-under=${COVERAGE_THRESHOLD}
+test: buzz/whisper_cpp
+# A check to get updates of yt-dlp. Should run only on local as part of regular development operations
+# Sort of a local "update checker"
+ifndef CI
+ uv lock --upgrade-package yt-dlp
+endif
+ pytest -s -vv --cov=buzz --cov-report=xml --cov-report=html --benchmark-skip --cov-fail-under=${COVERAGE_THRESHOLD} --cov-config=.coveragerc
-benchmarks: buzz/whisper_cpp.py translation_mo
+benchmarks: buzz/whisper_cpp
pytest -s -vv --benchmark-only --benchmark-json benchmarks.json
-dist/Buzz dist/Buzz.app: buzz/whisper_cpp.py translation_mo
+dist/Buzz dist/Buzz.app: buzz/whisper_cpp
pyinstaller --noconfirm Buzz.spec
version:
- poetry version ${version}
echo "VERSION = \"${version}\"" > buzz/__version__.py
-CMAKE_FLAGS=
-ifeq ($(UNAME_S),Darwin)
- AVX1_M := $(shell sysctl machdep.cpu.features)
- ifeq (,$(findstring AVX1.0,$(AVX1_M)))
- CMAKE_FLAGS += -DWHISPER_NO_AVX=ON
- endif
- ifeq (,$(findstring FMA,$(AVX1_M)))
- CMAKE_FLAGS += -DWHISPER_NO_FMA=ON
- endif
- AVX2_M := $(shell sysctl machdep.cpu.leaf7_features)
- ifeq (,$(findstring AVX2,$(AVX2_M)))
- CMAKE_FLAGS += -DWHISPER_NO_AVX2=ON
- endif
- CMAKE_FLAGS += -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
-else
- ifeq ($(OS), Windows_NT)
- CMAKE_FLAGS += -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release
- endif
-endif
-
-buzz/$(LIBWHISPER):
+buzz/whisper_cpp: translation_mo
ifeq ($(OS), Windows_NT)
- cp dll_backup/whisper.dll buzz || copy dll_backup\whisper.dll buzz\whisper.dll
- cp dll_backup/SDL2.dll buzz || copy dll_backup\SDL2.dll buzz\SDL2.dll
-else
- cmake -S whisper.cpp -B whisper.cpp/build/ $(CMAKE_FLAGS)
- cmake --build whisper.cpp/build --verbose
- cp whisper.cpp/build/bin/Debug/$(LIBWHISPER) buzz || true
- cp whisper.cpp/build/$(LIBWHISPER) buzz || true
-endif
-# Build CoreML support on ARM Macs
-ifeq ($(shell uname -m), arm64)
-ifeq ($(shell uname -s), Darwin)
- rm -rf whisper.cpp/build || true
- cmake -S whisper.cpp -B whisper.cpp/build/ $(CMAKE_FLAGS) -DWHISPER_COREML=1
- cmake --build whisper.cpp/build --verbose
- cp whisper.cpp/build/bin/Debug/$(LIBWHISPER) buzz/libwhisper-coreml.dylib || true
- cp whisper.cpp/build/$(LIBWHISPER) buzz/libwhisper-coreml.dylib || true
-endif
+ # Build Whisper with Vulkan support.
+ # The _DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR is needed to prevent mutex lock issues on Windows
+ # https://github.com/actions/runner-images/issues/10004#issuecomment-2156109231
+ # -DCMAKE_[C|CXX]_COMPILER_WORKS=TRUE is used to prevent issue in building test program that fails on CI
+ # GGML_NATIVE=OFF ensures we don't use -march=native (which would target the build machine's CPU)
+ cmake -S whisper.cpp -B whisper.cpp/build/ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_RPATH='$$ORIGIN' -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON -DCMAKE_C_FLAGS="-D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR" -DCMAKE_CXX_FLAGS="-D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR" -DCMAKE_C_COMPILER_WORKS=TRUE -DCMAKE_CXX_COMPILER_WORKS=TRUE -DGGML_VULKAN=1 -DGGML_NATIVE=OFF
+ cmake --build whisper.cpp/build -j --config Release --verbose
+
+ -mkdir buzz/whisper_cpp
+ cp whisper.cpp/build/bin/Release/whisper-cli.exe buzz/whisper_cpp/
+ cp whisper.cpp/build/bin/Release/whisper-server.exe buzz/whisper_cpp/
+ cp dll_backup/SDL2.dll buzz/whisper_cpp
+ PowerShell -NoProfile -ExecutionPolicy Bypass -Command "if (-not (Test-Path 'buzz\whisper_cpp\ggml-silero-v6.2.0.bin')) { Start-BitsTransfer -Source https://huggingface.co/ggml-org/whisper-vad/resolve/main/ggml-silero-v6.2.0.bin -Destination 'buzz\whisper_cpp\ggml-silero-v6.2.0.bin' }"
endif
-buzz/whisper_cpp.py: buzz/$(LIBWHISPER) translation_mo
- cd buzz && ctypesgen ../whisper.cpp/whisper.h -lwhisper -o whisper_cpp.py
-ifeq ($(shell uname -m), arm64)
-ifeq ($(shell uname -s), Darwin)
- cd buzz && ctypesgen ../whisper.cpp/whisper.h -lwhisper-coreml -o whisper_cpp_coreml.py
+ifeq ($(shell uname -s), Linux)
+ # Build Whisper with Vulkan support
+ # GGML_NATIVE=OFF ensures we don't use -march=native (which would target the build machine's CPU)
+ # This enables portable SSE4.2/AVX/AVX2 optimizations that work on most x86_64 CPUs
+ rm -rf whisper.cpp/build || true
+ -mkdir -p buzz/whisper_cpp
+ cmake -S whisper.cpp -B whisper.cpp/build/ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_RPATH='$$ORIGIN' -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON -DGGML_VULKAN=1 -DGGML_NATIVE=OFF
+ cmake --build whisper.cpp/build -j --config Release --verbose
+ cp whisper.cpp/build/bin/whisper-cli buzz/whisper_cpp/ || true
+ cp whisper.cpp/build/bin/whisper-server buzz/whisper_cpp/ || true
+ cp -P whisper.cpp/build/src/libwhisper.so* buzz/whisper_cpp/ || true
+ cp -P whisper.cpp/build/ggml/src/libggml.so* buzz/whisper_cpp/ || true
+ cp -P whisper.cpp/build/ggml/src/libggml-base.so* buzz/whisper_cpp/ || true
+ cp -P whisper.cpp/build/ggml/src/libggml-cpu.so* buzz/whisper_cpp/ || true
+ cp -P whisper.cpp/build/ggml/src/ggml-vulkan/libggml-vulkan.so* buzz/whisper_cpp/ || true
+ test -f buzz/whisper_cpp/ggml-silero-v6.2.0.bin || curl -L -o buzz/whisper_cpp/ggml-silero-v6.2.0.bin https://huggingface.co/ggml-org/whisper-vad/resolve/main/ggml-silero-v6.2.0.bin
endif
+
+# Build on Macs
+ifeq ($(shell uname -s), Darwin)
+ -rm -rf whisper.cpp/build || true
+ -mkdir -p buzz/whisper_cpp
+
+ifeq ($(shell uname -m), arm64)
+ cmake -S whisper.cpp -B whisper.cpp/build/ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DWHISPER_COREML=1
+else
+ # Intel
+ cmake -S whisper.cpp -B whisper.cpp/build/ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DGGML_VULKAN=0 -DGGML_METAL=0
+endif
+
+ cmake --build whisper.cpp/build -j --config Release --verbose
+ cp whisper.cpp/build/bin/whisper-cli buzz/whisper_cpp/ || true
+ cp whisper.cpp/build/bin/whisper-server buzz/whisper_cpp/ || true
+ cp whisper.cpp/build/src/libwhisper.dylib buzz/whisper_cpp/ || true
+ cp whisper.cpp/build/ggml/src/libggml* buzz/whisper_cpp/ || true
+ test -f buzz/whisper_cpp/ggml-silero-v6.2.0.bin || curl -L -o buzz/whisper_cpp/ggml-silero-v6.2.0.bin https://huggingface.co/ggml-org/whisper-vad/resolve/main/ggml-silero-v6.2.0.bin
endif
# Prints all the Mac developer identities used for code signing
@@ -176,11 +173,9 @@ codesign_all_mac: dist/Buzz.app
notarize_log:
xcrun notarytool log ${id} --keychain-profile "$$BUZZ_KEYCHAIN_NOTARY_PROFILE"
-VENV_PATH := $(shell poetry env info -p)
-
# Make GGML model from whisper. Example: make ggml model_path=/Users/chidiwilliams/.cache/whisper/medium.pt
ggml:
- python3 ./whisper.cpp/models/convert-pt-to-ggml.py ${model_path} $(VENV_PATH)/src/whisper dist
+ python3 ./whisper.cpp/models/convert-pt-to-ggml.py ${model_path} .venv/lib/python3.12/site-packages/whisper dist
upload_brew:
brew bump-cask-pr --version ${version} --verbose buzz
@@ -202,20 +197,30 @@ gh_upgrade_pr:
translation_po_all:
$(MAKE) translation_po locale=ca_ES
+ $(MAKE) translation_po locale=da_DK
+ $(MAKE) translation_po locale=de_DE
+ $(MAKE) translation_po locale=en_US
$(MAKE) translation_po locale=es_ES
+ $(MAKE) translation_po locale=it_IT
+ $(MAKE) translation_po locale=ja_JP
+ $(MAKE) translation_po locale=lv_LV
+ $(MAKE) translation_po locale=nl
$(MAKE) translation_po locale=pl_PL
+ $(MAKE) translation_po locale=pt_BR
+ $(MAKE) translation_po locale=uk_UA
$(MAKE) translation_po locale=zh_CN
$(MAKE) translation_po locale=zh_TW
- $(MAKE) translation_po locale=it_IT
- $(MAKE) translation_po locale=lv_LV
- $(MAKE) translation_po locale=uk_UA
- $(MAKE) translation_po locale=ja_JP
TMP_POT_FILE_PATH := $(shell mktemp)
PO_FILE_PATH := buzz/locale/${locale}/LC_MESSAGES/buzz.po
translation_po:
- xgettext --from-code=UTF-8 -o "${TMP_POT_FILE_PATH}" -l python $(shell find buzz -name '*.py')
- sed -i.bak 's/CHARSET/UTF-8/' ${TMP_POT_FILE_PATH} && rm ${TMP_POT_FILE_PATH}.bak
+ mkdir -p buzz/locale/${locale}/LC_MESSAGES
+ xgettext --from-code=UTF-8 --add-location=file -o "${TMP_POT_FILE_PATH}" -l python $(shell find buzz -name '*.py')
+ sed -i.bak 's/CHARSET/UTF-8/' ${TMP_POT_FILE_PATH}
+ if [ ! -f ${PO_FILE_PATH} ]; then \
+ msginit --no-translator --input=${TMP_POT_FILE_PATH} --output-file=${PO_FILE_PATH}; \
+ fi
+ rm ${TMP_POT_FILE_PATH}.bak
msgmerge -U ${PO_FILE_PATH} ${TMP_POT_FILE_PATH}
# On windows we can have two ways to compile locales, one for CI the other for local builds
@@ -228,7 +233,7 @@ ifeq ($(OS), Windows_NT)
done
else
for dir in buzz/locale/*/ ; do \
- python msgfmt.py -o $$dir/LC_MESSAGES/buzz.mo $$dir/LC_MESSAGES/buzz.po; \
+ python3 msgfmt.py -o $$dir/LC_MESSAGES/buzz.mo $$dir/LC_MESSAGES/buzz.po; \
done
endif
diff --git a/README.ja_JP.md b/README.ja_JP.md
new file mode 100644
index 00000000..9990e5e6
--- /dev/null
+++ b/README.ja_JP.md
@@ -0,0 +1,98 @@
+# Buzz
+
+[ドキュメント](https://chidiwilliams.github.io/buzz/)
+
+パソコン上でオフラインで音声の文字起こしと翻訳を行います。OpenAIの[Whisper](https://github.com/openai/whisper)を使用しています。
+
+
+[](https://github.com/chidiwilliams/buzz/actions/workflows/ci.yml)
+[](https://codecov.io/github/chidiwilliams/buzz)
+
+[](https://GitHub.com/chidiwilliams/buzz/releases/)
+
+
+
+## 機能
+- 音声・動画ファイルまたはYouTubeリンクの文字起こし
+- マイクからのリアルタイム音声文字起こし
+ - イベントやプレゼンテーション中に便利なプレゼンテーションウィンドウ
+- ノイズの多い音声でより高い精度を得るための、文字起こし前の話者分離
+- 文字起こしメディアでの話者識別
+- 複数のWhisperバックエンドをサポート
+ - Nvidia GPU向けCUDAアクセラレーション対応
+ - Mac向けApple Silicon対応
+ - Whisper.cppでのVulkanアクセラレーション対応(統合GPUを含むほとんどのGPUで利用可能)
+- TXT、SRT、VTT形式での文字起こしエクスポート
+- 検索、再生コントロール、速度調整機能を備えた高度な文字起こしビューア
+- 効率的なナビゲーションのためのキーボードショートカット
+- 新しいファイルの自動文字起こしのための監視フォルダ
+- スクリプトや自動化のためのコマンドラインインターフェース
+
+## インストール
+
+### macOS
+
+[SourceForge](https://sourceforge.net/projects/buzz-captions/files/)から`.dmg`ファイルをダウンロードしてください。
+
+### Windows
+
+[SourceForge](https://sourceforge.net/projects/buzz-captions/files/)からインストールファイルを入手してください。
+
+アプリは署名されていないため、インストール時に警告が表示されます。`詳細情報` -> `実行`を選択してください。
+
+### Linux
+
+Buzzは[Flatpak](https://flathub.org/apps/io.github.chidiwilliams.Buzz)または[Snap](https://snapcraft.io/buzz)として利用可能です。
+
+Flatpakをインストールするには、以下を実行してください:
+```shell
+flatpak install flathub io.github.chidiwilliams.Buzz
+```
+
+[](https://flathub.org/en/apps/io.github.chidiwilliams.Buzz)
+
+Snapをインストールするには、以下を実行してください:
+```shell
+sudo apt-get install libportaudio2 libcanberra-gtk-module libcanberra-gtk3-module
+sudo snap install buzz
+```
+
+[](https://snapcraft.io/buzz)
+
+### PyPI
+
+[ffmpeg](https://www.ffmpeg.org/download.html)をインストールしてください。
+
+Python 3.12環境を使用していることを確認してください。
+
+Buzzをインストール
+
+```shell
+pip install buzz-captions
+python -m buzz
+```
+
+**PyPIでのGPUサポート**
+
+PyPIでインストールしたバージョンでWindows上のNvidia GPUのGPUサポートを有効にするには、[torch](https://pytorch.org/get-started/locally/)のCUDAサポートを確認してください。
+
+```
+pip3 install -U torch==2.8.0+cu129 torchaudio==2.8.0+cu129 --index-url https://download.pytorch.org/whl/cu129
+pip3 install nvidia-cublas-cu12==12.9.1.4 nvidia-cuda-cupti-cu12==12.9.79 nvidia-cuda-runtime-cu12==12.9.79 --extra-index-url https://pypi.ngc.nvidia.com
+```
+
+### 最新開発版
+
+最新の機能やバグ修正を含む最新開発版の入手方法については、[FAQ](https://chidiwilliams.github.io/buzz/docs/faq#9-where-can-i-get-latest-development-version)をご覧ください。
+
+### スクリーンショット
+
+
+
+
+
+
+
+
+
+
diff --git a/README.md b/README.md
index 3b273976..b8cb5e19 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,8 @@
+[[简体中文](readme/README.zh_CN.md)] <- 点击查看中文页面。
+
# Buzz
-[Documentation](https://chidiwilliams.github.io/buzz/) | [Buzz Captions on the App Store](https://apps.apple.com/us/app/buzz-captions/id6446018936?mt=12&itsct=apps_box_badge&itscg=30200)
+[Documentation](https://chidiwilliams.github.io/buzz/)
Transcribe and translate audio offline on your personal computer. Powered by
OpenAI's [Whisper](https://github.com/openai/whisper).
@@ -11,48 +13,94 @@ OpenAI's [Whisper](https://github.com/openai/whisper).

[](https://GitHub.com/chidiwilliams/buzz/releases/)
-
-
Buzz is better on the App Store. Get a Mac-native version of Buzz with a cleaner look, audio playback, drag-and-drop import, transcript editing, search, and much more.
-
-
+
-
+## Features
+- Transcribe audio and video files or Youtube links
+- Live realtime audio transcription from microphone
+ - Presentation window for easy accessibility during events and presentations
+- Speech separation before transcription for better accuracy on noisy audio
+- Speaker identification in transcribed media
+- Multiple whisper backend support
+ - CUDA acceleration support for Nvidia GPUs
+ - Apple Silicon support for Macs
+ - Vulkan acceleration support for Whisper.cpp on most GPUs, including integrated GPUs
+- Export transcripts to TXT, SRT, and VTT
+- Advanced Transcription Viewer with search, playback controls, and speed adjustment
+- Keyboard shortcuts for efficient navigation
+- Watch folder for automatic transcription of new files
+- Command-Line Interface for scripting and automation
## Installation
-**PyPI**:
+### macOS
+
+Download the `.dmg` from the [SourceForge](https://sourceforge.net/projects/buzz-captions/files/).
+
+### Windows
+
+Get the installation files from the [SourceForge](https://sourceforge.net/projects/buzz-captions/files/).
+
+App is not signed, you will get a warning when you install it. Select `More info` -> `Run anyway`.
+
+### Linux
+
+Buzz is available as a [Flatpak](https://flathub.org/apps/io.github.chidiwilliams.Buzz) or a [Snap](https://snapcraft.io/buzz).
+
+To install flatpak, run:
+```shell
+flatpak install flathub io.github.chidiwilliams.Buzz
+```
+
+[](https://flathub.org/en/apps/io.github.chidiwilliams.Buzz)
+
+To install snap, run:
+```shell
+sudo apt-get install libportaudio2 libcanberra-gtk-module libcanberra-gtk3-module
+sudo snap install buzz
+```
+
+[](https://snapcraft.io/buzz)
+
+### PyPI
Install [ffmpeg](https://www.ffmpeg.org/download.html)
+Ensure you use Python 3.12 environment.
+
Install Buzz
+
```shell
pip install buzz-captions
python -m buzz
```
-**macOS**:
+**GPU support for PyPI**
-Install with [brew utility](https://brew.sh/)
+To have GPU support for Nvidia GPUS on Windows, for PyPI installed version ensure, CUDA support for [torch](https://pytorch.org/get-started/locally/)
-```shell
-brew install --cask buzz
+```
+pip3 install -U torch==2.8.0+cu129 torchaudio==2.8.0+cu129 --index-url https://download.pytorch.org/whl/cu129
+pip3 install nvidia-cublas-cu12==12.9.1.4 nvidia-cuda-cupti-cu12==12.9.79 nvidia-cuda-runtime-cu12==12.9.79 --extra-index-url https://pypi.ngc.nvidia.com
```
-Or download the `.dmg` from the [releases page](https://github.com/chidiwilliams/buzz/releases/latest).
+### Latest development version
-**Windows**:
+For info on how to get latest development version with latest features and bug fixes see [FAQ](https://chidiwilliams.github.io/buzz/docs/faq#9-where-can-i-get-latest-development-version).
-Download and run the `.exe` from the [releases page](https://github.com/chidiwilliams/buzz/releases/latest).
+### Support Buzz
-App is not signed, you will get a warning when you install it. Select `More info` -> `Run anyway`.
+You can help the Buzz by starring 🌟 the repo and sharing it with your friends.
-**Linux**:
+### Screenshots
+
+
+
+
+
+
+
+
+
+
-```shell
-sudo apt-get install libportaudio2 libcanberra-gtk-module libcanberra-gtk3-module
-sudo snap install buzz
-sudo snap connect buzz:audio-record
-sudo snap connect buzz:password-manager-service
-sudo snap connect buzz:pulseaudio
-sudo snap connect buzz:removable-media
-```
diff --git a/build.py b/build.py
deleted file mode 100644
index 00725f9a..00000000
--- a/build.py
+++ /dev/null
@@ -1,9 +0,0 @@
-import subprocess
-
-
-def build(setup_kwargs):
- subprocess.call(["make", "buzz/whisper_cpp.py"])
-
-
-if __name__ == "__main__":
- build({})
diff --git a/buzz/__version__.py b/buzz/__version__.py
index 848258f9..8f8e75e9 100644
--- a/buzz/__version__.py
+++ b/buzz/__version__.py
@@ -1 +1 @@
-VERSION = "1.2.0"
+VERSION = "1.4.4"
diff --git a/buzz/assets/icons/color-background.svg b/buzz/assets/icons/color-background.svg
new file mode 100644
index 00000000..c62912ed
--- /dev/null
+++ b/buzz/assets/icons/color-background.svg
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/buzz/assets/icons/fullscreen.svg b/buzz/assets/icons/fullscreen.svg
new file mode 100644
index 00000000..e17e748d
--- /dev/null
+++ b/buzz/assets/icons/fullscreen.svg
@@ -0,0 +1,5 @@
+
+
\ No newline at end of file
diff --git a/buzz/assets/icons/gui-text-color.svg b/buzz/assets/icons/gui-text-color.svg
new file mode 100644
index 00000000..929d172c
--- /dev/null
+++ b/buzz/assets/icons/gui-text-color.svg
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/buzz/assets/icons/new-window.svg b/buzz/assets/icons/new-window.svg
new file mode 100644
index 00000000..cfb59177
--- /dev/null
+++ b/buzz/assets/icons/new-window.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/buzz/assets/speaker-identification.svg b/buzz/assets/speaker-identification.svg
new file mode 100644
index 00000000..cfea8b41
--- /dev/null
+++ b/buzz/assets/speaker-identification.svg
@@ -0,0 +1,14 @@
+
+
\ No newline at end of file
diff --git a/buzz/assets/update_FILL0_wght700_GRAD0_opsz48.svg b/buzz/assets/update_FILL0_wght700_GRAD0_opsz48.svg
new file mode 100644
index 00000000..d01ac5a7
--- /dev/null
+++ b/buzz/assets/update_FILL0_wght700_GRAD0_opsz48.svg
@@ -0,0 +1 @@
+
diff --git a/buzz/assets/url.svg b/buzz/assets/url.svg
new file mode 100644
index 00000000..3b193417
--- /dev/null
+++ b/buzz/assets/url.svg
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/buzz/buzz.py b/buzz/buzz.py
index 16568948..6f434353 100644
--- a/buzz/buzz.py
+++ b/buzz/buzz.py
@@ -4,18 +4,32 @@ import multiprocessing
import os
import platform
import sys
+from pathlib import Path
from typing import TextIO
+# Set up CUDA library paths before any torch imports
+# This must happen before platformdirs or any other imports that might indirectly load torch
+import buzz.cuda_setup # noqa: F401
+
from platformdirs import user_log_dir, user_cache_dir, user_data_dir
+# Will download all Huggingface data to the app cache directory
+os.environ.setdefault("HF_HOME", user_cache_dir("Buzz"))
+
from buzz.assets import APP_BASE_DIR
# Check for segfaults if not running in frozen mode
-if getattr(sys, "frozen", False) is False:
+# Note: On Windows, faulthandler can print "Windows fatal exception" messages
+# for non-fatal RPC errors (0x800706be) during multiprocessing operations.
+# These are usually harmless but noisy, so we disable faulthandler on Windows.
+if getattr(sys, "frozen", False) is False and platform.system() != "Windows":
faulthandler.enable()
-# Sets stderr to no-op TextIO when None (run as Windows GUI).
-# Resolves https://github.com/chidiwilliams/buzz/issues/221
+# Sets stdout/stderr to no-op TextIO when None (run as Windows GUI with --noconsole).
+# stdout fix: torch.hub uses sys.stdout.write() for download progress and crashes if None.
+# stderr fix: Resolves https://github.com/chidiwilliams/buzz/issues/221
+if sys.stdout is None:
+ sys.stdout = TextIO()
if sys.stderr is None:
sys.stderr = TextIO()
@@ -26,7 +40,14 @@ os.environ["PATH"] += os.pathsep + APP_BASE_DIR
# Add the app directory to the DLL list: https://stackoverflow.com/a/64303856
if platform.system() == "Windows":
os.add_dll_directory(APP_BASE_DIR)
- os.add_dll_directory(os.path.join(APP_BASE_DIR, "dll_backup"))
+
+ dll_backup_dir = os.path.join(APP_BASE_DIR, "dll_backup")
+ if os.path.isdir(dll_backup_dir):
+ os.add_dll_directory(dll_backup_dir)
+
+ onnx_dll_dir = os.path.join(APP_BASE_DIR, "onnxruntime", "capi")
+ if os.path.isdir(onnx_dll_dir):
+ os.add_dll_directory(onnx_dll_dir)
def main():
@@ -49,6 +70,18 @@ def main():
format=log_format,
)
+ # Silence noisy third-party library loggers
+ logging.getLogger("matplotlib").setLevel(logging.WARNING)
+ logging.getLogger("graphviz").setLevel(logging.WARNING)
+ logging.getLogger("nemo_logger").setLevel(logging.ERROR)
+ logging.getLogger("nemo_logging").setLevel(logging.ERROR)
+ logging.getLogger("numba").setLevel(logging.WARNING)
+ logging.getLogger("torio._extension.utils").setLevel(logging.WARNING)
+ logging.getLogger("export_config_manager").setLevel(logging.WARNING)
+ logging.getLogger("training_telemetry_provider").setLevel(logging.ERROR)
+ logging.getLogger("default_recorder").setLevel(logging.WARNING)
+ logging.getLogger("config").setLevel(logging.WARNING)
+
if getattr(sys, "frozen", False) is False:
stdout_handler = logging.StreamHandler(sys.stdout)
stdout_handler.setLevel(logging.DEBUG)
diff --git a/buzz/cli.py b/buzz/cli.py
index d130f573..6fd56df0 100644
--- a/buzz/cli.py
+++ b/buzz/cli.py
@@ -100,7 +100,10 @@ def parse(app: Application, parser: QCommandLineParser):
["p", "prompt"], "Initial prompt.", "prompt", ""
)
word_timestamp_option = QCommandLineOption(
- ["wt", "word-timestamps"], "Generate word-level timestamps."
+ ["w", "word-timestamps"], "Generate word-level timestamps."
+ )
+ extract_speech_option = QCommandLineOption(
+ ["e", "extract-speech"], "Extract speech from audio before transcribing."
)
open_ai_access_token_option = QCommandLineOption(
"openai-token",
@@ -124,6 +127,7 @@ def parse(app: Application, parser: QCommandLineParser):
language_option,
initial_prompt_option,
word_timestamp_option,
+ extract_speech_option,
open_ai_access_token_option,
output_directory_option,
srt_option,
@@ -178,6 +182,7 @@ def parse(app: Application, parser: QCommandLineParser):
initial_prompt = parser.value(initial_prompt_option)
word_timestamps = parser.isSet(word_timestamp_option)
+ extract_speech = parser.isSet(extract_speech_option)
output_formats: typing.Set[OutputFormat] = set()
if parser.isSet(srt_option):
@@ -205,6 +210,7 @@ def parse(app: Application, parser: QCommandLineParser):
language=language,
initial_prompt=initial_prompt,
word_level_timings=word_timestamps,
+ extract_speech=extract_speech,
openai_access_token=openai_access_token,
)
diff --git a/buzz/cuda_setup.py b/buzz/cuda_setup.py
new file mode 100644
index 00000000..d99b402e
--- /dev/null
+++ b/buzz/cuda_setup.py
@@ -0,0 +1,130 @@
+"""
+CUDA library path setup for nvidia packages installed via pip.
+
+This module must be imported BEFORE any torch or CUDA-dependent libraries are imported.
+It handles locating and loading CUDA libraries (cuDNN, cuBLAS, etc.) from the nvidia
+pip packages.
+
+On Windows: Uses os.add_dll_directory() to add library paths
+On Linux: Uses ctypes to preload libraries (LD_LIBRARY_PATH is read at process start)
+On macOS: No action needed (CUDA not supported)
+"""
+
+import ctypes
+import logging
+import os
+import platform
+import sys
+from pathlib import Path
+
+
+logger = logging.getLogger(__name__)
+
+
+def _get_nvidia_package_lib_dirs() -> list[Path]:
+ """Find all nvidia package library directories in site-packages."""
+ lib_dirs = []
+
+ # Find site-packages directories
+ site_packages_dirs = []
+ for path in sys.path:
+ if "site-packages" in path:
+ site_packages_dirs.append(Path(path))
+
+ # Also check relative to the current module for frozen apps
+ if getattr(sys, "frozen", False):
+ # For frozen apps, check the _internal directory
+ frozen_lib_dir = Path(sys._MEIPASS) if hasattr(sys, "_MEIPASS") else Path(sys.executable).parent
+ nvidia_dir = frozen_lib_dir / "nvidia"
+ if nvidia_dir.exists():
+ for pkg_dir in nvidia_dir.iterdir():
+ if pkg_dir.is_dir():
+ lib_subdir = pkg_dir / "lib"
+ if lib_subdir.exists():
+ lib_dirs.append(lib_subdir)
+ # Some packages have bin directory on Windows
+ bin_subdir = pkg_dir / "bin"
+ if bin_subdir.exists():
+ lib_dirs.append(bin_subdir)
+
+ # Check each site-packages for nvidia packages
+ for sp_dir in site_packages_dirs:
+ nvidia_dir = sp_dir / "nvidia"
+ if nvidia_dir.exists():
+ for pkg_dir in nvidia_dir.iterdir():
+ if pkg_dir.is_dir():
+ lib_subdir = pkg_dir / "lib"
+ if lib_subdir.exists():
+ lib_dirs.append(lib_subdir)
+ # Some packages have bin directory on Windows
+ bin_subdir = pkg_dir / "bin"
+ if bin_subdir.exists():
+ lib_dirs.append(bin_subdir)
+
+ return lib_dirs
+
+
+def _setup_windows_dll_directories():
+ """Add nvidia library directories to Windows DLL search path."""
+ lib_dirs = _get_nvidia_package_lib_dirs()
+ for lib_dir in lib_dirs:
+ try:
+ os.add_dll_directory(str(lib_dir))
+ except (OSError, AttributeError) as e:
+ pass
+
+
+def _preload_linux_libraries():
+ """Preload CUDA libraries on Linux using ctypes.
+
+ On Linux, LD_LIBRARY_PATH is only read at process start, so we need to
+ manually load the libraries using ctypes before torch tries to load them.
+ """
+ lib_dirs = _get_nvidia_package_lib_dirs()
+
+ # Libraries to skip - NVBLAS requires special configuration and causes issues
+ skip_patterns = ["libnvblas"]
+
+ loaded_libs = set()
+
+ for lib_dir in lib_dirs:
+ if not lib_dir.exists():
+ continue
+
+ # Find all .so files in the directory
+ for lib_file in sorted(lib_dir.glob("*.so*")):
+ if lib_file.name in loaded_libs:
+ continue
+ if lib_file.is_symlink() and not lib_file.exists():
+ continue
+
+ # Skip problematic libraries
+ if any(pattern in lib_file.name for pattern in skip_patterns):
+ continue
+
+ try:
+ # Use RTLD_GLOBAL so symbols are available to other libraries
+ ctypes.CDLL(str(lib_file), mode=ctypes.RTLD_GLOBAL)
+ loaded_libs.add(lib_file.name)
+ except OSError as e:
+ # Some libraries may have missing dependencies, that's ok
+ pass
+
+
+def setup_cuda_libraries():
+ """Set up CUDA library paths for the current platform.
+
+ This function should be called as early as possible, before any torch
+ or CUDA-dependent libraries are imported.
+ """
+ system = platform.system()
+
+ if system == "Windows":
+ _setup_windows_dll_directories()
+ elif system == "Linux":
+ _preload_linux_libraries()
+ # macOS doesn't have CUDA support, so nothing to do
+
+
+# Auto-run setup when this module is imported
+setup_cuda_libraries()
diff --git a/buzz/db/dao/transcription_dao.py b/buzz/db/dao/transcription_dao.py
index 763a7a8c..db5107b4 100644
--- a/buzz/db/dao/transcription_dao.py
+++ b/buzz/db/dao/transcription_dao.py
@@ -1,3 +1,4 @@
+import uuid
from datetime import datetime
from uuid import UUID
@@ -31,7 +32,11 @@ class TranscriptionDAO(DAO[Transcription]):
time_queued,
url,
whisper_model_size,
- hugging_face_model_id
+ hugging_face_model_id,
+ word_level_timings,
+ extract_speech,
+ name,
+ notes
) VALUES (
:id,
:export_formats,
@@ -45,9 +50,13 @@ class TranscriptionDAO(DAO[Transcription]):
:time_queued,
:url,
:whisper_model_size,
- :hugging_face_model_id
+ :hugging_face_model_id,
+ :word_level_timings,
+ :extract_speech,
+ :name,
+ :notes
)
- """
+ """
)
query.bindValue(":id", str(task.uid))
query.bindValue(
@@ -82,9 +91,84 @@ class TranscriptionDAO(DAO[Transcription]):
if task.transcription_options.model.hugging_face_model_id
else None,
)
+ query.bindValue(
+ ":word_level_timings",
+ task.transcription_options.word_level_timings
+ )
+ query.bindValue(
+ ":extract_speech",
+ task.transcription_options.extract_speech
+ )
+ query.bindValue(":name", None) # name is not available in FileTranscriptionTask
+ query.bindValue(":notes", None) # notes is not available in FileTranscriptionTask
if not query.exec():
raise Exception(query.lastError().text())
+ def copy_transcription(self, id: UUID) -> UUID:
+ query = self._create_query()
+ query.prepare("SELECT * FROM transcription WHERE id = :id")
+ query.bindValue(":id", str(id))
+ if not query.exec():
+ raise Exception(query.lastError().text())
+ if not query.next():
+ raise Exception("Transcription not found")
+
+ transcription_data = {field.name: query.value(field.name) for field in
+ self.entity.__dataclass_fields__.values()}
+
+ new_id = uuid.uuid4()
+ transcription_data["id"] = str(new_id)
+ transcription_data["time_queued"] = datetime.now().isoformat()
+ transcription_data["status"] = FileTranscriptionTask.Status.QUEUED.value
+
+ query.prepare(
+ """
+ INSERT INTO transcription (
+ id,
+ export_formats,
+ file,
+ output_folder,
+ language,
+ model_type,
+ source,
+ status,
+ task,
+ time_queued,
+ url,
+ whisper_model_size,
+ hugging_face_model_id,
+ word_level_timings,
+ extract_speech,
+ name,
+ notes
+ ) VALUES (
+ :id,
+ :export_formats,
+ :file,
+ :output_folder,
+ :language,
+ :model_type,
+ :source,
+ :status,
+ :task,
+ :time_queued,
+ :url,
+ :whisper_model_size,
+ :hugging_face_model_id,
+ :word_level_timings,
+ :extract_speech,
+ :name,
+ :notes
+ )
+ """
+ )
+ for key, value in transcription_data.items():
+ query.bindValue(f":{key}", value)
+ if not query.exec():
+ raise Exception(query.lastError().text())
+
+ return new_id
+
def update_transcription_as_started(self, id: UUID):
query = self._create_query()
query.prepare(
@@ -165,3 +249,72 @@ class TranscriptionDAO(DAO[Transcription]):
query.bindValue(":time_ended", datetime.now().isoformat())
if not query.exec():
raise Exception(query.lastError().text())
+
+ def update_transcription_file_and_name(self, id: UUID, file_path: str, name: str | None = None):
+ query = self._create_query()
+ query.prepare(
+ """
+ UPDATE transcription
+ SET file = :file, name = COALESCE(:name, name)
+ WHERE id = :id
+ """
+ )
+
+ query.bindValue(":id", str(id))
+ query.bindValue(":file", file_path)
+ query.bindValue(":name", name)
+ if not query.exec():
+ raise Exception(query.lastError().text())
+
+ def update_transcription_name(self, id: UUID, name: str):
+ query = self._create_query()
+ query.prepare(
+ """
+ UPDATE transcription
+ SET name = :name
+ WHERE id = :id
+ """
+ )
+
+ query.bindValue(":id", str(id))
+ query.bindValue(":name", name)
+ if not query.exec():
+ raise Exception(query.lastError().text())
+ if query.numRowsAffected() == 0:
+ raise Exception("Transcription not found")
+
+ def update_transcription_notes(self, id: UUID, notes: str):
+ query = self._create_query()
+ query.prepare(
+ """
+ UPDATE transcription
+ SET notes = :notes
+ WHERE id = :id
+ """
+ )
+
+ query.bindValue(":id", str(id))
+ query.bindValue(":notes", notes)
+ if not query.exec():
+ raise Exception(query.lastError().text())
+ if query.numRowsAffected() == 0:
+ raise Exception("Transcription not found")
+
+ def reset_transcription_for_restart(self, id: UUID):
+ """Reset a transcription to queued status for restart"""
+ query = self._create_query()
+ query.prepare(
+ """
+ UPDATE transcription
+ SET status = :status, progress = :progress, time_started = NULL, time_ended = NULL, error_message = NULL
+ WHERE id = :id
+ """
+ )
+
+ query.bindValue(":id", str(id))
+ query.bindValue(":status", FileTranscriptionTask.Status.QUEUED.value)
+ query.bindValue(":progress", 0.0)
+ if not query.exec():
+ raise Exception(query.lastError().text())
+ if query.numRowsAffected() == 0:
+ raise Exception("Transcription not found")
diff --git a/buzz/db/db.py b/buzz/db/db.py
index 287a5b10..0abd40f8 100644
--- a/buzz/db/db.py
+++ b/buzz/db/db.py
@@ -25,11 +25,14 @@ def setup_test_db() -> QSqlDatabase:
def _setup_db(path: str) -> QSqlDatabase:
# Run migrations
- db = sqlite3.connect(path)
- run_sqlite_migrations(db)
- copy_transcriptions_from_json_to_sqlite(db)
- mark_in_progress_and_queued_transcriptions_as_canceled(db)
- db.close()
+ db = sqlite3.connect(path, isolation_level=None, timeout=10.0)
+ try:
+ run_sqlite_migrations(db)
+ copy_transcriptions_from_json_to_sqlite(db)
+ mark_in_progress_and_queued_transcriptions_as_canceled(db)
+ db.commit()
+ finally:
+ db.close()
db = QSqlDatabase.addDatabase("QSQLITE")
db.setDatabaseName(path)
@@ -38,3 +41,12 @@ def _setup_db(path: str) -> QSqlDatabase:
db.exec('PRAGMA foreign_keys = ON')
logging.debug("Database connection opened: %s", db.databaseName())
return db
+
+
+def close_app_db():
+ db = QSqlDatabase.database()
+ if not db.isValid():
+ return
+
+ if db.isOpen():
+ db.close()
\ No newline at end of file
diff --git a/buzz/db/entity/transcription.py b/buzz/db/entity/transcription.py
index 50cdeab0..ffb1b11a 100644
--- a/buzz/db/entity/transcription.py
+++ b/buzz/db/entity/transcription.py
@@ -16,6 +16,8 @@ class Transcription(Entity):
model_type: str = ModelType.WHISPER.value
whisper_model_size: str | None = None
hugging_face_model_id: str | None = None
+ word_level_timings: str | None = None
+ extract_speech: str | None = None
language: str | None = None
id: str = field(default_factory=lambda: str(uuid.uuid4()))
error_message: str | None = None
@@ -28,6 +30,8 @@ class Transcription(Entity):
output_folder: str | None = None
source: str | None = None
url: str | None = None
+ name: str | None = None
+ notes: str | None = None
@property
def id_as_uuid(self):
diff --git a/buzz/db/migrator.py b/buzz/db/migrator.py
index 0fa6b043..d36f9b34 100644
--- a/buzz/db/migrator.py
+++ b/buzz/db/migrator.py
@@ -69,7 +69,8 @@ class DBMigrator:
msg_argv += (args,)
else:
args = []
- logging.info(msg_tmpl, *msg_argv)
+ # Uncomment this to get debugging information
+ # logging.info(msg_tmpl, *msg_argv)
self.db.execute(sql, args)
self.n_changes += 1
diff --git a/buzz/db/service/transcription_service.py b/buzz/db/service/transcription_service.py
index 560298a8..8a15a24e 100644
--- a/buzz/db/service/transcription_service.py
+++ b/buzz/db/service/transcription_service.py
@@ -19,6 +19,9 @@ class TranscriptionService:
def create_transcription(self, task):
self.transcription_dao.create_transcription(task)
+ def copy_transcription(self, id: UUID) -> UUID:
+ return self.transcription_dao.copy_transcription(id)
+
def update_transcription_as_started(self, id: UUID):
self.transcription_dao.update_transcription_as_started(id)
@@ -44,6 +47,18 @@ class TranscriptionService:
)
)
+ def update_transcription_file_and_name(self, id: UUID, file_path: str, name: str | None = None):
+ self.transcription_dao.update_transcription_file_and_name(id, file_path, name)
+
+ def update_transcription_name(self, id: UUID, name: str):
+ self.transcription_dao.update_transcription_name(id, name)
+
+ def update_transcription_notes(self, id: UUID, notes: str):
+ self.transcription_dao.update_transcription_notes(id, notes)
+
+ def reset_transcription_for_restart(self, id: UUID):
+ self.transcription_dao.reset_transcription_for_restart(id)
+
def replace_transcription_segments(self, id: UUID, segments: List[Segment]):
self.transcription_segment_dao.delete_segments(id)
for segment in segments:
diff --git a/buzz/file_transcriber_queue_worker.py b/buzz/file_transcriber_queue_worker.py
index 03ac37c6..8e5cf1a8 100644
--- a/buzz/file_transcriber_queue_worker.py
+++ b/buzz/file_transcriber_queue_worker.py
@@ -1,18 +1,65 @@
import logging
import multiprocessing
+import os
import queue
+import ssl
+import sys
+from pathlib import Path
from typing import Optional, Tuple, List, Set
from uuid import UUID
-from PyQt6.QtCore import QObject, QThread, pyqtSignal, pyqtSlot
+# Fix SSL certificate verification for bundled applications (macOS, Windows)
+# This must be done before importing demucs which uses torch.hub with urllib
+try:
+ import certifi
+ os.environ.setdefault('REQUESTS_CA_BUNDLE', certifi.where())
+ os.environ.setdefault('SSL_CERT_FILE', certifi.where())
+ os.environ.setdefault('SSL_CERT_DIR', os.path.dirname(certifi.where()))
+ # Also update the default SSL context for urllib
+ ssl._create_default_https_context = lambda: ssl.create_default_context(cafile=certifi.where())
+except ImportError:
+ pass
+from PyQt6.QtCore import QObject, QThread, pyqtSignal, pyqtSlot, Qt
+
+# Patch subprocess for demucs to prevent console windows on Windows
+if sys.platform == "win32":
+ import subprocess
+ _original_run = subprocess.run
+ _original_check_output = subprocess.check_output
+
+ def _patched_run(*args, **kwargs):
+ if 'startupinfo' not in kwargs:
+ si = subprocess.STARTUPINFO()
+ si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
+ si.wShowWindow = subprocess.SW_HIDE
+ kwargs['startupinfo'] = si
+ if 'creationflags' not in kwargs:
+ kwargs['creationflags'] = subprocess.CREATE_NO_WINDOW
+ return _original_run(*args, **kwargs)
+
+ def _patched_check_output(*args, **kwargs):
+ if 'startupinfo' not in kwargs:
+ si = subprocess.STARTUPINFO()
+ si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
+ si.wShowWindow = subprocess.SW_HIDE
+ kwargs['startupinfo'] = si
+ if 'creationflags' not in kwargs:
+ kwargs['creationflags'] = subprocess.CREATE_NO_WINDOW
+ return _original_check_output(*args, **kwargs)
+
+ subprocess.run = _patched_run
+ subprocess.check_output = _patched_check_output
+
+from demucs import api as demucsApi
+
+from buzz.locale import _
from buzz.model_loader import ModelType
from buzz.transcriber.file_transcriber import FileTranscriber
from buzz.transcriber.openai_whisper_api_file_transcriber import (
OpenAIWhisperAPIFileTranscriber,
)
from buzz.transcriber.transcriber import FileTranscriptionTask, Segment
-from buzz.transcriber.whisper_cpp_file_transcriber import WhisperCppFileTranscriber
from buzz.transcriber.whisper_file_transcriber import WhisperFileTranscriber
@@ -29,22 +76,38 @@ class FileTranscriberQueueWorker(QObject):
task_error = pyqtSignal(FileTranscriptionTask, str)
completed = pyqtSignal()
+ trigger_run = pyqtSignal()
def __init__(self, parent: Optional[QObject] = None):
super().__init__(parent)
self.tasks_queue = queue.Queue()
self.canceled_tasks: Set[UUID] = set()
+ self.current_transcriber = None
+ self.speech_path = None
+ self.is_running = False
+ # Use QueuedConnection to ensure run() is called in the correct thread context
+ # and doesn't block signal handlers
+ self.trigger_run.connect(self.run, Qt.ConnectionType.QueuedConnection)
@pyqtSlot()
def run(self):
+ if self.is_running:
+ return
+
logging.debug("Waiting for next transcription task")
+ # Clean up of previous run.
+ if self.current_transcriber is not None:
+ self.current_transcriber.stop()
+ self.current_transcriber = None
+
# Get next non-canceled task from queue
while True:
self.current_task: Optional[FileTranscriptionTask] = self.tasks_queue.get()
# Stop listening when a "None" task is received
if self.current_task is None:
+ self.is_running = False
self.completed.emit()
return
@@ -53,17 +116,66 @@ class FileTranscriberQueueWorker(QObject):
break
+ # Set is_running AFTER we have a valid task to process
+ self.is_running = True
+
+ if self.current_task.transcription_options.extract_speech:
+ logging.debug("Will extract speech")
+
+ def separator_progress_callback(progress):
+ self.task_progress.emit(self.current_task, int(progress["segment_offset"] * 100) / int(progress["audio_length"] * 100))
+
+ separator = None
+ separated = None
+ try:
+ # Force CPU if specified, otherwise use CUDA if available
+ force_cpu = os.getenv("BUZZ_FORCE_CPU", "false").lower() == "true"
+ if force_cpu:
+ device = "cpu"
+ else:
+ import torch
+ device = "cuda" if torch.cuda.is_available() else "cpu"
+ separator = demucsApi.Separator(
+ device=device,
+ progress=True,
+ callback=separator_progress_callback,
+ )
+ _origin, separated = separator.separate_audio_file(Path(self.current_task.file_path))
+
+ task_file_path = Path(self.current_task.file_path)
+ self.speech_path = task_file_path.with_name(f"{task_file_path.stem}_speech.mp3")
+ demucsApi.save_audio(separated["vocals"], self.speech_path, separator.samplerate)
+
+ self.current_task.file_path = str(self.speech_path)
+ except Exception as e:
+ logging.error(f"Error during speech extraction: {e}", exc_info=True)
+ self.task_error.emit(
+ self.current_task,
+ _("Speech extraction failed! Check your internet connection — a model may need to be downloaded."),
+ )
+ self.is_running = False
+ return
+ finally:
+ # Release memory used by speech extractor
+ del separator, separated
+ try:
+ import torch
+ if torch.cuda.is_available():
+ torch.cuda.empty_cache()
+ except Exception:
+ pass
+
logging.debug("Starting next transcription task")
+ self.task_progress.emit(self.current_task, 0)
model_type = self.current_task.transcription_options.model.model_type
- if model_type == ModelType.WHISPER_CPP:
- self.current_transcriber = WhisperCppFileTranscriber(task=self.current_task)
- elif model_type == ModelType.OPEN_AI_WHISPER_API:
+ if model_type == ModelType.OPEN_AI_WHISPER_API:
self.current_transcriber = OpenAIWhisperAPIFileTranscriber(
task=self.current_task
)
elif (
- model_type == ModelType.HUGGING_FACE
+ model_type == ModelType.WHISPER_CPP
+ or model_type == ModelType.HUGGING_FACE
or model_type == ModelType.WHISPER
or model_type == ModelType.FASTER_WHISPER
):
@@ -94,29 +206,53 @@ class FileTranscriberQueueWorker(QObject):
self.current_transcriber.completed.connect(self.on_task_completed)
# Wait for next item on the queue
- self.current_transcriber.error.connect(self.run)
- self.current_transcriber.completed.connect(self.run)
+ self.current_transcriber.error.connect(lambda: self._on_task_finished())
+ self.current_transcriber.completed.connect(lambda: self._on_task_finished())
self.task_started.emit(self.current_task)
self.current_transcriber_thread.start()
+ def _on_task_finished(self):
+ """Called when a task completes or errors, resets state and triggers next run"""
+ self.is_running = False
+ # Use signal to avoid blocking in signal handler context
+ self.trigger_run.emit()
+
def add_task(self, task: FileTranscriptionTask):
+ # Remove from canceled tasks if it was previously canceled (for restart functionality)
+ if task.uid in self.canceled_tasks:
+ self.canceled_tasks.remove(task.uid)
+
self.tasks_queue.put(task)
+ # If the worker is not currently running, trigger it to start processing
+ # Use signal to avoid blocking the main thread
+ if not self.is_running:
+ self.trigger_run.emit()
def cancel_task(self, task_id: UUID):
self.canceled_tasks.add(task_id)
- if self.current_task.uid == task_id:
+ if self.current_task is not None and self.current_task.uid == task_id:
if self.current_transcriber is not None:
self.current_transcriber.stop()
+
+ if self.current_transcriber_thread is not None:
+ if not self.current_transcriber_thread.wait(5000):
+ logging.warning("Transcriber thread did not terminate gracefully")
+ self.current_transcriber_thread.terminate()
def on_task_error(self, error: str):
if (
self.current_task is not None
and self.current_task.uid not in self.canceled_tasks
):
- self.current_task.status = FileTranscriptionTask.Status.FAILED
- self.current_task.error = error
+ # Check if the error indicates cancellation
+ if "canceled" in error.lower() or "cancelled" in error.lower():
+ self.current_task.status = FileTranscriptionTask.Status.CANCELED
+ self.current_task.error = error
+ else:
+ self.current_task.status = FileTranscriptionTask.Status.FAILED
+ self.current_task.error = error
self.task_error.emit(self.current_task, error)
@pyqtSlot(tuple)
@@ -133,6 +269,13 @@ class FileTranscriberQueueWorker(QObject):
if self.current_task is not None:
self.task_completed.emit(self.current_task, segments)
+ if self.speech_path is not None:
+ try:
+ Path(self.speech_path).unlink()
+ except Exception:
+ pass
+ self.speech_path = None
+
def stop(self):
self.tasks_queue.put(None)
if self.current_transcriber is not None:
diff --git a/buzz/locale.py b/buzz/locale.py
index 43f923b7..0ba15e39 100644
--- a/buzz/locale.py
+++ b/buzz/locale.py
@@ -5,19 +5,19 @@ import gettext
from PyQt6.QtCore import QLocale
from buzz.assets import get_path
-from buzz.settings.settings import APP_NAME
+from buzz.settings.settings import APP_NAME, Settings
locale_dir = get_path("locale")
gettext.bindtextdomain("buzz", locale_dir)
-custom_locale = os.getenv("BUZZ_LOCALE")
+settings = Settings()
-languages = [custom_locale] if custom_locale else QLocale().uiLanguages()
-
-logging.debug(f"UI locales {languages}")
+languages = [
+ settings.value(settings.Key.UI_LOCALE, QLocale().name())
+]
translate = gettext.translation(
APP_NAME.lower(), locale_dir, languages=languages, fallback=True
)
-_ = translate.gettext
+_ = translate.gettext
\ No newline at end of file
diff --git a/buzz/locale/ca_ES/LC_MESSAGES/buzz.po b/buzz/locale/ca_ES/LC_MESSAGES/buzz.po
index a4a79d71..8d989312 100644
--- a/buzz/locale/ca_ES/LC_MESSAGES/buzz.po
+++ b/buzz/locale/ca_ES/LC_MESSAGES/buzz.po
@@ -7,406 +7,733 @@ msgid ""
msgstr ""
"Project-Id-Version: buzz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-11-03 08:32+0200\n"
-"PO-Revision-Date: 2023-02-15 05:01+0000\n"
-"Last-Translator: Jordi Mas i Hernàndez \n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
+"PO-Revision-Date: 2025-10-17 07:59+0200\n"
+"Last-Translator: Éric Duarte \n"
"Language-Team: Catalan \n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 3.7\n"
-#: buzz/widgets/import_url_dialog.py:19 buzz/settings/shortcut.py:19
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
msgid "Import URL"
-msgstr ""
+msgstr "URL d'importació"
-#: buzz/widgets/import_url_dialog.py:22
+#: buzz/widgets/import_url_dialog.py
msgid "https://example.com/audio.mp3"
-msgstr ""
+msgstr "https://exemple.com/audio.mp3"
-#: buzz/widgets/import_url_dialog.py:28
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:69
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:245
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:97
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:295
-#: buzz/widgets/main_window.py:234
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
msgid "Ok"
-msgstr ""
+msgstr "D’acord"
-#: buzz/widgets/import_url_dialog.py:29
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:70
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:246
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:296
-#: buzz/widgets/model_download_progress_dialog.py:29
-#: buzz/widgets/main_window.py:235
-#, fuzzy
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
msgid "Cancel"
-msgstr "Cancel·lat"
+msgstr "Cancel·lar"
-#: buzz/widgets/import_url_dialog.py:34
+#: buzz/widgets/import_url_dialog.py
msgid "URL:"
-msgstr ""
+msgstr "URL:"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "Invalid URL"
-msgstr ""
+msgstr "URL no vàlida"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "The URL you entered is invalid."
-msgstr ""
+msgstr "L'URL que heu introduït no és vàlid."
-#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py:29
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "Presentació de transcripció en directe"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
msgid "Reset to Defaults"
-msgstr ""
+msgstr "Restableix als valors predeterminats"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:52
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "Anglès"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "Català"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "Danès"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "Holandès"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "Alemany"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "Castellà"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "Italià"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "Japonès"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "Letó"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "Polonès"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "Portuguès (Brasil)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "Ucraïnès"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "Xinès (simplificat)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "Xinès (Tradicional)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "Cal reiniciar!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "Idioma UI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Font Size"
-msgstr ""
+msgstr "Mida de la lletra"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:61
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Test"
-msgstr ""
+msgstr "Prova"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:67
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API key"
-msgstr ""
+msgstr "Clau de l'API d'OpenAI"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:80
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI base url"
-msgstr ""
+msgstr "URL base d'OpenAI"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:89
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "Model de l'API d'OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Default export file name"
-msgstr ""
+msgstr "Nom del fitxer d'exportació per defecte"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Enable live recording transcription export"
-msgstr ""
+msgstr "Activa l'exportació de transcripcions en directe"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:101
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:47
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:50
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Browse"
-msgstr ""
+msgstr "Navega"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:120
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Export folder"
-msgstr ""
+msgstr "Exporta la carpeta"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:131
-#, fuzzy
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Live recording mode"
-msgstr "Enregistrament en viu"
+msgstr "Mode d'enregistrament en directe"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:156
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:162
-msgid "OpenAI API Key Test"
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
msgstr ""
+"Nota: La configuració d'exportació d'enregistrament en directe es mourà a la "
+"Configuració avançada a la pantalla d'enregistrament en directe en una "
+"versió futura."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:157
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "Utilitza la quantització de 8 bits per reduir l'ús de memòria"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"S'aplica als models Huggingface i Faster Whisper. Redueix l'ús de memòria de "
+"la GPU, però pot reduir lleugerament la qualitat de la transcripció."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "Redueix la RAM de la GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "Utilitza només la CPU i desactiveu l'acceleració de la GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+"Establiu això si els models més grans no s'ajusten a la memòria de la GPU i "
+"Buzz es bloqueja"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "Desactiva la GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API Key Test"
+msgstr "Prova de clau OpenAI API"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"Your API key is valid. Buzz will use this key to perform Whisper API "
"transcriptions and AI translations."
msgstr ""
+"La vostra clau API és vàlida. Buzz utilitzarà aquesta clau per realitzar "
+"transcripcions de l'API de Whisper i traduccions de la IA."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:173
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Invalid API key"
-msgstr ""
+msgstr "Clau API no vàlida"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:174
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
-"API supports only base64 characters (A-Za-z0-9+/=). Other characters in API "
-"key may cause errors."
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
msgstr ""
+"L'API només admet caràcters base64 (A-Za-z0-9+/).-). Altres caràcters de la "
+"clau API poden causar errors."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:192
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Select Export Folder"
-msgstr ""
+msgstr "Selecciona la carpeta d'exportació"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:244
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"OpenAI API returned invalid response. Please check the API url or your key. "
"Transcription and translation may still work if the API does not support key "
"validation."
msgstr ""
+"L'API d'OpenAI ha retornat una resposta no vàlida. Comproveu l'URL de l'API "
+"o la vostra clau. La transcripció i la traducció encara poden funcionar si "
+"l'API no admet la validació de claus."
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:42
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Enable folder watch"
-msgstr ""
+msgstr "Habilita el seguiment de carpetes"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "Eliminar fitxers processats"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Input folder"
-msgstr ""
+msgstr "Carpeta d'entrada"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Output folder"
-msgstr ""
+msgstr "Carpeta de sortida"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:105
-#, fuzzy
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Input Folder"
-msgstr "Selecciona un fitxer d'àudio"
+msgstr "Selecciona la carpeta d'entrada"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:114
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Output Folder"
-msgstr ""
+msgstr "Selecciona la carpeta de sortida"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:43
-#, fuzzy
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Preferences"
-msgstr "Preferències..."
+msgstr "Preferències"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:50
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "General"
msgstr "General"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:53
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Models"
msgstr "Models"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:57
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Shortcuts"
msgstr "Dreceres"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:63
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Folder Watch"
-msgstr ""
+msgstr "Vigila la carpeta"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:70
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Group"
-msgstr ""
+msgstr "Grup"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:82
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Huggingface ID of a Faster whisper model"
-msgstr ""
+msgstr "ID de la cara oculta d'un model de whisper més ràpid"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download"
-msgstr "Baixada"
+msgstr "Descàrrega"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:99
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Show file location"
msgstr "Mostra la ubicació del fitxer"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:107
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete"
msgstr "Suprimeix"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:138
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Downloaded"
-msgstr "Baixat"
+msgstr "Descarregat"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:143
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Available for Download"
-msgstr "Disponible per baixar"
+msgstr "Disponible per descarregar"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:164
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download link to Whisper.cpp ggml model file"
-msgstr ""
+msgstr "Enllaç de descàrrega a Whisper.cpp fitxer de model ggml"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:239
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete Model"
msgstr "Suprimeix el model"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:240
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Are you sure you want to delete the selected model?"
msgstr "Esteu segur que voleu suprimir el model seleccionat?"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:268
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download failed"
-msgstr "Baixat"
+msgstr "Descàrrega fallida"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:269
-#: buzz/widgets/main_window.py:291 buzz/model_loader.py:503
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
msgid "Error"
msgstr "Error"
-#: buzz/widgets/record_button.py:10 buzz/widgets/record_button.py:17
-#: buzz/widgets/main_window_toolbar.py:35
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
msgid "Record"
msgstr "Enregistra"
-#: buzz/widgets/record_button.py:21
+#: buzz/widgets/record_button.py
msgid "Stop"
msgstr "Atura"
-#: buzz/widgets/transcriber/languages_combo_box.py:35
-#: buzz/transcriber/transcriber.py:159
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
msgid "Detect Language"
msgstr "Detecta l'idioma"
-#: buzz/widgets/transcriber/file_transcriber_widget.py:79
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "p. ex., eng, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"Introduïu un codi d'idioma ISO 639-3 (3 lletres).\n"
+"Exemples: eng (anglès), fra (francès), deu (alemany),\n"
+"spa (castellà), lav (letó)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
msgid "Run"
msgstr "Executa"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:92
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Model:"
msgstr "Model:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:104
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
msgid "First time use of a model may take up to several minutest to load."
msgstr ""
+"L'ús per primera vegada d'un model pot trigar diversos minuts a carregar-se."
-#: buzz/widgets/transcriber/transcription_options_group_box.py:113
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Api Key:"
-msgstr ""
+msgstr "Clau API:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:114
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Task:"
msgstr "Tasca:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:115
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Language:"
msgstr "Idioma:"
-#: buzz/widgets/transcriber/initial_prompt_text_edit.py:10
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
msgid "Enter prompt..."
-msgstr ""
+msgstr "Introduïu el prompt..."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:33
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Advanced Settings"
msgstr "Configuració avançada"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:37
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Speech recognition settings"
-msgstr ""
+msgstr "Configuració del reconeixement de veu"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:46
-msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-msgstr "Separat per comes, p. ex. «0.0, 0.2, 0.4, 0.6, 0.8, 1.0»"
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:55
-msgid "Temperature:"
-msgstr "Temperatura:"
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:66
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Initial Prompt:"
msgstr "Pregunta inicial:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:68
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Translation settings"
-msgstr ""
+msgstr "Configuració de la traducció"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:72
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Enable AI translation"
-msgstr ""
+msgstr "Habilita la traducció de la IA"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:84
-#, fuzzy
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "AI model:"
-msgstr "Model:"
+msgstr "Model d'IA:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:88
-msgid "Enter instructions for AI on how to translate..."
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
msgstr ""
+"Si us plau, traduïu cada text que us enviï de l'anglès al castellà. La "
+"traducció s'utilitzarà en un sistema automatitzat; si us plau, no afegiu cap "
+"comentari ni nota, només la traducció."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:92
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Instructions for AI:"
-msgstr ""
+msgstr "Instruccions per a la IA:"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:42
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "Configuració d'enregistrament"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "Llindar de silenci:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "Mode d'enregistrament en directe:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "Separador de línies:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "Pas de transcripció:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "Amaga el no confirmat"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "Activa l'exportació d'enregistrament en directe"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "Carpeta d'exportació:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "Nom del fitxer d'exportació:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "Fitxer de text (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "Tipus de fitxer d'exportació:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"Limita les entrades d'exportació\n"
+"(0 = exporta tot):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Word-level timings"
msgstr "Temps amb granularitat de paraula"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:66
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "Extreu la veu"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Export:"
-msgstr ""
+msgstr "Exporta:"
-#: buzz/widgets/transcriber/hugging_face_search_line_edit.py:37
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
msgid "Huggingface ID of a model"
-msgstr ""
+msgstr "ID de la cara oculta d'un model"
-#: buzz/widgets/transcriber/advanced_settings_button.py:9
+#: buzz/widgets/transcriber/advanced_settings_button.py
msgid "Advanced..."
-msgstr ""
+msgstr "Avançat..."
-#: buzz/widgets/main_window_toolbar.py:39
-msgid "New Transcription"
-msgstr "Transcripció nova"
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "Nova transcripció de fitxers"
-#: buzz/widgets/main_window_toolbar.py:46
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "Nova transcripció d'URL"
+
+#: buzz/widgets/main_window_toolbar.py
msgid "Open Transcript"
msgstr "Obre una transcripció"
-#: buzz/widgets/main_window_toolbar.py:52 buzz/settings/shortcut.py:27
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
msgid "Cancel Transcription"
msgstr "Cancel·la la transcripció"
-#: buzz/widgets/main_window_toolbar.py:60 buzz/widgets/main_window.py:223
-#: buzz/settings/shortcut.py:26
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
msgid "Clear History"
msgstr "Neteja l'historial"
-#: buzz/widgets/transcription_tasks_table_widget.py:64
-msgid "In Progress"
-msgstr ""
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "Actualització disponible"
-#: buzz/widgets/transcription_tasks_table_widget.py:67
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "In Progress"
+msgstr "En progrés"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Completed"
msgstr "Completat"
-#: buzz/widgets/transcription_tasks_table_widget.py:74
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Failed"
-msgstr ""
+msgstr "Ha fallat"
-#: buzz/widgets/transcription_tasks_table_widget.py:77
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Canceled"
msgstr "Cancel·lat"
-#: buzz/widgets/transcription_tasks_table_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Queued"
msgstr "A la cua"
-#: buzz/widgets/transcription_tasks_table_widget.py:86
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "File Name / URL"
-msgstr "Nom del fitxer"
+msgstr "Nom del fitxer / URL"
-#: buzz/widgets/transcription_tasks_table_widget.py:98
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Model"
-msgstr "Model:"
+msgstr "Model"
-#: buzz/widgets/transcription_tasks_table_widget.py:107
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Task"
-msgstr "Tasca:"
+msgstr "Tasca"
-#: buzz/widgets/transcription_tasks_table_widget.py:116
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Status"
msgstr "Estat"
-#: buzz/widgets/transcription_tasks_table_widget.py:124
-msgid "Date Added"
-msgstr ""
-
-#: buzz/widgets/transcription_tasks_table_widget.py:135
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Date Completed"
-msgstr "Completat"
+msgstr "Data de finalització"
-#: buzz/widgets/recording_transcriber_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "Data d'addició"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "Notes"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "Restableix l'ordre de les columnes"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "Reinicia la transcripció"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "Canvia el nom"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "Afegeix/Edita notes"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "Canvia el nom de la transcripció"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "Introduïu el nou nom:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "Introduïu algunes notes rellevants per a aquesta transcripció:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "No es pot reiniciar"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr "Només es poden reiniciar les transcripcions fallides o cancel·lades."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "No s'ha pogut reiniciar la transcripció: {}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+"No s'ha pogut reiniciar la transcripció: el model no està disponible i no "
+"s'ha pogut descarregar."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr ""
+"No s'ha pogut reiniciar la transcripció: no s'ha trobat el treballador del "
+"transcriptor."
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Live Recording"
-msgstr "Enregistrament en viu"
+msgstr "Enregistrament en directe"
-#: buzz/widgets/recording_transcriber_widget.py:144
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Click Record to begin..."
msgstr "Feu clic a Enregistra per a començar..."
-#: buzz/widgets/recording_transcriber_widget.py:147
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Waiting for AI translation..."
-msgstr ""
+msgstr "Esperant la traducció de la IA..."
-#: buzz/widgets/recording_transcriber_widget.py:159
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Microphone:"
msgstr "Micròfon:"
-#: buzz/widgets/recording_transcriber_widget.py:523
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "Mostra en una nova finestra"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "Mida del text:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "Tema"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "Clar"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "Fosc"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "Personalitzat"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "Color del text"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "Color de fons"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "Pantalla completa"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "Copia"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "Copia la transcripció al porta-retalls"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "Res per copiar!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "Ha fallat la còpia"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "Copiat!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "Selecciona el color del text"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "Selecciona el color de fons"
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "An error occurred while starting a new recording:"
msgstr "S'ha produït un error en iniciar un enregistrament nou:"
-#: buzz/widgets/recording_transcriber_widget.py:527
+#: buzz/widgets/recording_transcriber_widget.py
msgid ""
"Please check your audio devices or check the application logs for more "
"information."
@@ -414,136 +741,408 @@ msgstr ""
"Comproveu els vostres dispositius d'àudio o els registres de l'aplicació per "
"a més informació."
-#: buzz/widgets/about_dialog.py:80
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "Hi ha una nova versió de Buzz disponible!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "Versió actual:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "Nova versió:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "Notes de la versió:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "Descarrega i instal·la"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "No hi ha cap URL de descàrrega disponible per a la vostra plataforma."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "S'està descarregant el fitxer {} de {}..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "S'està descarregant el fitxer {} de {} ({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "Descàrrega fallida"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "No s'ha pogut descarregar l'actualització: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "No s'ha pogut desar l'instal·lador: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "Descàrrega completada!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "No s'ha pogut executar l'instal·lador: {}"
+
+#: buzz/widgets/about_dialog.py
msgid "Check for updates"
msgstr "Comprova si hi ha actualitzacions"
-#: buzz/widgets/about_dialog.py:109
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "Mostra els registres"
+
+#: buzz/widgets/about_dialog.py
msgid "You're up to date!"
msgstr "Estàs al dia!"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:93
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "Volum mitjà"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "Cua"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "Start"
msgstr "Inicia"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:94
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "End"
msgstr "Finalitza"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:95
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:34
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:30
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text"
msgstr "Text"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:96
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:40
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:31
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:64
-#, fuzzy
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Translation"
-msgstr "Transcripció nova"
+msgstr "Traducció"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:26
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "View"
-msgstr ""
+msgstr "Veure"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:46
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "Timestamps"
-msgstr ""
+msgstr "Marqua de temps"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:156
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Export"
-msgstr ""
+msgstr "Exporta"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:170
-#: buzz/transcriber/transcriber.py:24
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Translate"
-msgstr ""
+msgstr "Traduir"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:180
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Resize"
-msgstr ""
+msgstr "Redimensionar"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:279
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "Identifica els parlants"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "Cerca"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "Mostra/amaga la barra de cerca (Ctrl+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "Cerca:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "Introduïu el text a cercar..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "Coincidència anterior (Maj+Retorn)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "Coincidència següent (Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "Neteja"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "Controls de reproducció:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "Segment de bucle"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr "Activa/desactiva el bucle en fer clic als segments de transcripció"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "Segueix l'àudio"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+"Activa/desactiva seguint la posició d'àudio actual a la transcripció. Quan "
+"està activada, es desplaça automàticament al text actual."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "Desplaça't fins a l'actual"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "Desplaçar-se fins al text que es parla actualment"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "1 de més de 100 coincidències"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "1 de "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr " coincidències"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "No s'ha trobat cap coincidència"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr " de més de 100 coincidències"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr " de "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "API Key Required"
-msgstr ""
+msgstr "Clau API necessària"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:280
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Please enter OpenAI API Key in preferences"
-msgstr ""
+msgstr "Introduïu la clau API d'OpenAI a les preferències"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:297
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "Amplia el temps final"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "Amplia els finals fins a (segons)"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "Amplia els finals"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "Opcions de redimensionament"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Desired subtitle length"
-msgstr ""
+msgstr "Longitud desitjada dels subtítols"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:298
-msgid "Enter target characters per subtitle:"
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
msgstr ""
+"Disponible només si els temps a nivell de paraula estaven desactivats durant "
+"la transcripció"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:78
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "Opcions de fusió"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "Fusiona per buit"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "Divideix per puntuació"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "Divideix per la longitud màxima"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "Fusiona"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr ""
+"Disponible només si els temps a nivell de paraula estaven activats durant la "
+"transcripció"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr ""
+"La identificació de parlants no està disponible: no s'han pogut carregar les "
+"biblioteques necessàries."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 Recollint transcripcions"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 Carregant àudio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 Carregant el model d'alineació"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr ""
+"3/8 Carregant el model d'alineació (tornant a intentar amb la memòria cau...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+"No s'ha pogut carregar el model d'alineació. Comproveu la vostra connexió a "
+"Internet i torneu-ho a intentar."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 Processant àudio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 Preparant transcripcions"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 Identificant parlants"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 Assignant parlants a transcripcions"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 Identificació completada"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 Error en identificar parlants"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "Pas 1: Identifica els parlants"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "Identifica"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "Llest per identificar parlants"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "Fitxer d'àudio no trobat"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "Pas 2: Anomena els parlants"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "Reprodueix la mostra"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "Fusiona les frases del parlant"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "Desa"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "Cancel·lant..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "Cancel·lat"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Save File"
msgstr "Desa el fitxer"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:80
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text files"
msgstr "Fitxers de text"
-#: buzz/widgets/snap_notice.py:9
-msgid "Snap permission notice"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:13
-msgid ""
-"Detected missing permissions, please check that snap permissions have been "
-"granted"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:16
-msgid ""
-"To enable necessary permissions run the following commands in the terminal"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:30
-msgid "Close"
-msgstr ""
-
-#: buzz/widgets/model_download_progress_dialog.py:36
-#, fuzzy
+#: buzz/widgets/model_download_progress_dialog.py
msgid "Downloading model"
-msgstr "Baixat"
+msgstr "Descarregant el model"
-#: buzz/widgets/model_download_progress_dialog.py:37
+#: buzz/widgets/model_download_progress_dialog.py
msgid "remaining"
-msgstr ""
+msgstr "restant"
-#: buzz/widgets/menu_bar.py:38
-#, fuzzy
+#: buzz/widgets/menu_bar.py
msgid "Import File..."
-msgstr "Importa fitxer multimèdia..."
+msgstr "Importa fitxer..."
-#: buzz/widgets/menu_bar.py:41
-#, fuzzy
+#: buzz/widgets/menu_bar.py
msgid "Import URL..."
-msgstr "Importa fitxer multimèdia..."
+msgstr "Importa l'URL..."
-#: buzz/widgets/menu_bar.py:44
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "Importa carpeta..."
+
+#: buzz/widgets/menu_bar.py
msgid "About"
-msgstr ""
+msgstr "Quant a"
-#: buzz/widgets/menu_bar.py:48
+#: buzz/widgets/menu_bar.py
msgid "Preferences..."
msgstr "Preferències..."
-#: buzz/widgets/menu_bar.py:51 buzz/widgets/menu_bar.py:61
+#: buzz/widgets/menu_bar.py
msgid "Help"
msgstr "Ajuda"
-#: buzz/widgets/menu_bar.py:57
+#: buzz/widgets/menu_bar.py
msgid "File"
msgstr "Fitxer"
-#: buzz/widgets/main_window.py:227
+#: buzz/widgets/main_window.py
msgid ""
"Are you sure you want to delete the selected transcription(s)? This action "
"cannot be undone."
@@ -551,63 +1150,533 @@ msgstr ""
"Esteu segur que voleu suprimir les transcripcions seleccionades? Aquesta "
"acció no es pot desfer."
-#: buzz/widgets/main_window.py:255
+#: buzz/widgets/main_window.py
msgid "Select audio file"
msgstr "Selecciona un fitxer d'àudio"
-#: buzz/widgets/main_window.py:291
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "Selecciona carpeta"
+
+#: buzz/widgets/main_window.py
msgid "Unable to save OpenAI API key to keyring"
-msgstr ""
+msgstr "No s'ha pogut desar la clau OpenAI API a l'anell de claus"
-#: buzz/transcriber/transcriber.py:25
-#, fuzzy
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr ""
+"El servidor Whisper no s'ha pogut iniciar. Consulteu els registres per "
+"obtenir més informació."
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"El servidor Whisper no s'ha pogut iniciar a causa de la memòria insuficient. "
+"Si us plau, torneu-ho a provar amb un model més petit. Per forçar el mode "
+"CPU, utilitzeu la variable d'entorn BUZZ_FORCE_CPU=TRUE."
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "Traduir a l'anglès"
+
+#: buzz/transcriber/transcriber.py
msgid "Transcribe"
-msgstr "Obre una transcripció"
+msgstr "Transcriure"
-#: buzz/model_loader.py:532
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "Xinès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "Rus"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "Coreà"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "Francés"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "Portuguès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "Turc"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "Àrab"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "Suec"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "Indonesi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "Hindi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "Finès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "Vietnamita"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "Hebreu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "Grec"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "Malai"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "Txec"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "Romanès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "Hongarès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "Tàmil"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "Noruec"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "Tailandès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "Urdú"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "Croata"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "Bùlgar"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "Lituà"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "Llatí"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "Maori"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "Malaiàlam"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "Gal·lès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "Eslovac"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "Telugu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "Persa"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "Bengalí"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "Serbi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "Àzeri"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "Eslovè"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "Kannada"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "Estònia"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "Macedoni"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "Breton"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "Basc"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "Islandès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "Armeni"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "Nepalès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "Mongol"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "Bosnià"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "Kazakh"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "Albanès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "Suahili"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "Gallec"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "Marathi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "Panjabi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "Singalès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "Khmer"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "Shona"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "Ioruba"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "Somali"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "Afrikaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "Occità"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "Georgià"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "Bielorús"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "Tadjik"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "Gujarati"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "Amhàric"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "Yiddish"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "Lao"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "Uzbek"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "Feroès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "Crioll d'Haití"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "Paixtu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "Turcomans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "Nynorsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "Maltès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "Sànscrit"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "Luxemburguès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "Tibetà"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "Tagàlog"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "Malgaix"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "Assamès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "Tàtar"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "Hawaià"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "Lingala"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "Hausa"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "Bashkir"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "Javanès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "Sundanès"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "Cantonès"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
msgid "A connection error occurred"
-msgstr ""
+msgstr "S'ha produït un error de connexió"
-#: buzz/settings/shortcut.py:17
-#, fuzzy
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "Començant Whisper.cpp..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "Iniciant la transcripció..."
+
+#: buzz/settings/shortcut.py
msgid "Open Record Window"
-msgstr "Enregistrament en viu"
+msgstr "Obre la finestra de registre"
-#: buzz/settings/shortcut.py:18
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "Import File"
-msgstr "Importa fitxer multimèdia..."
+msgstr "Importar arxiu"
-#: buzz/settings/shortcut.py:20
+#: buzz/settings/shortcut.py
msgid "Open Preferences Window"
-msgstr ""
+msgstr "Obre la finestra de preferències"
-#: buzz/settings/shortcut.py:22
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Text"
-msgstr "Transcripció nova"
+msgstr "Veure el text de la transcripció"
-#: buzz/settings/shortcut.py:23
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Translation"
-msgstr "Transcripció nova"
+msgstr "Veure la traducció de transcripció"
-#: buzz/settings/shortcut.py:24
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Timestamps"
-msgstr "Transcripció nova"
+msgstr "Veure les marques de temps de la transcripció"
-#: buzz/settings/recording_transcriber_mode.py:5
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "Cerca una transcripció"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "Ves al resultat de cerca de transcripció següent"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "Ves al resultat de cerca de transcripció anterior"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "Desplaça't fins al text actual"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "Reproduir/posar en pausa l'àudio"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "Reprodueix el segment actual"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "Commuta els controls de reproducció"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "Disminuir l'hora d'inici del segment"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "Augmenta l'hora d'inici del segment"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "Disminueix l'hora de finalització del segment"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "Augmenta l'hora de finalització del segment"
+
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append below"
-msgstr ""
+msgstr "Afegeix a sota"
-#: buzz/settings/recording_transcriber_mode.py:6
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append above"
-msgstr ""
+msgstr "Afegeix a sobre"
-#: buzz/settings/recording_transcriber_mode.py:7
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append and correct"
+msgstr "Afegeix i corregeix"
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
msgstr ""
+"Ha fallat l'extracció de veu! Comproveu la vostra connexió a Internet — pot "
+"ser que s'hagi de descarregar un model."
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "Separat per comes, p. ex. «0.0, 0.2, 0.4, 0.6, 0.8, 1.0»"
+
+#~ msgid "Temperature:"
+#~ msgstr "Temperatura:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr "Si us plau, tradueix cada text que t'enviï de l'anglès al castellà."
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "Error de traducció, vegeu els registres!"
+
+#~ msgid "Snap permission notice"
+#~ msgstr "Avís de permís d'ajust"
+
+#~ msgid ""
+#~ "Detected missing permissions, please check that snap permissions have "
+#~ "been granted"
+#~ msgstr ""
+#~ "S'han detectat permisos que manquen, comproveu que s'han concedit "
+#~ "permisos de captura"
+
+#~ msgid ""
+#~ "To enable necessary permissions run the following commands in the terminal"
+#~ msgstr ""
+#~ "Per habilitar els permisos necessaris, executeu les ordres següents al "
+#~ "terminal"
+
+#~ msgid "Close"
+#~ msgstr "Tanca"
+
+#~ msgid "Enter instructions for AI on how to translate..."
+#~ msgstr "Introduïu les instruccions per a la IA sobre com traduir..."
#~ msgid "ID"
#~ msgstr "ID"
diff --git a/buzz/locale/da_DK/LC_MESSAGES/buzz.po b/buzz/locale/da_DK/LC_MESSAGES/buzz.po
new file mode 100644
index 00000000..f7835ae7
--- /dev/null
+++ b/buzz/locale/da_DK/LC_MESSAGES/buzz.po
@@ -0,0 +1,1645 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Ole Guldberg2 \n"
+"Language-Team: \n"
+"Language: da_DK\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : "
+"n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+
+# "X-Generator: Poedit 3.4.4\n"
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
+msgid "Import URL"
+msgstr "Importer fra URL"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "https://example.com/audio.mp3"
+msgstr "https://example.com/audio.mp3"
+
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
+msgid "Ok"
+msgstr "OK"
+
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
+msgid "Cancel"
+msgstr "Afbryd"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "URL:"
+msgstr "URL:"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "Invalid URL"
+msgstr "Ugyldig URL"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "The URL you entered is invalid."
+msgstr "Den URL du har angivet er ikke gyldig."
+
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "Live transkriptionspræsentation"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
+msgid "Reset to Defaults"
+msgstr "Gendan standard-indstillinger"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "Engelsk"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "Catalansk"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "Dansk"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "Nederlandsk"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "Tysk"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "Spansk"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "Italiensk"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "Japansk"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "Lettisk"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "Polsk"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "Portugisisk (Brasilien)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "Ukrainsk"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "Kinesisk (forenklet)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "Kinesisk (traditionelt)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "Genstart påkrævet!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "Brugerfladesprog"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Font Size"
+msgstr "Skriftypestørrelse"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Test"
+msgstr "Test"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API key"
+msgstr "OpenAI API-nøgle"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI base url"
+msgstr "OpenAI base-URL"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "OpenAI API-model"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Default export file name"
+msgstr "Standard eksport filnavn"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Enable live recording transcription export"
+msgstr "Slå transkription af live optagelse eksport til"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Browse"
+msgstr "Gennemse"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Export folder"
+msgstr "Eksportmappe"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Live recording mode"
+msgstr "Live optagelsestilstand"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
+msgstr ""
+"Bemærk: Indstillinger for live optagelseseksport vil i en fremtidig version "
+"blive flyttet til Avancerede indstillinger på skærmen for live optagelse."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "Brug 8-bit kvantisering for at reducere hukommelsesforbruget"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"Gælder for Huggingface og Faster Whisper modeller. Reducerer GPU "
+"hukommelsesforbrug, men kan en smule forringe transkriptionskvaliteten."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "Reducer GPU RAM"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "Brug kun CPU og deaktiver GPU-acceleration"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+"Aktivér dette hvis større modeller ikke passer i GPU-hukommelsen og Buzz "
+"crasher"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "Deaktiver GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API Key Test"
+msgstr "OpenAI API Nøgle test"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Your API key is valid. Buzz will use this key to perform Whisper API "
+"transcriptions and AI translations."
+msgstr ""
+"Din API nøgle er gyldig. Buzz vil benytte nøglen til at anvende Whisper API "
+"transkription og AI oversættelser."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Invalid API key"
+msgstr "Ugyldig API-nøgle"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
+msgstr ""
+"API supporterer kun base64 tegn (A-Za-z0-9+/=_-). Andre tegn i API-nøglen "
+"kan guve fejl. "
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Select Export Folder"
+msgstr "Vælg eksport-mappe"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"OpenAI API returned invalid response. Please check the API url or your key. "
+"Transcription and translation may still work if the API does not support key "
+"validation."
+msgstr ""
+"OpenAI API returnerede et ugyldigt svar. Tjek venligst API-URL og nøgle. "
+"Transkription og oversættelse virker måske stadig, selvom API'et ikke "
+"understøtter nøgle validering."
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Enable folder watch"
+msgstr "Aktiver mappeovervågning"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "Slet behandlede filer"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Input folder"
+msgstr "Inputmappe"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Output folder"
+msgstr "Outputmappe"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Select Input Folder"
+msgstr "Vælg inputmappe"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Select Output Folder"
+msgstr "Vælg outputmappe"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Preferences"
+msgstr "Indstillinger"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "General"
+msgstr "Generelt"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Models"
+msgstr "Modeller"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Shortcuts"
+msgstr "Genveje"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Folder Watch"
+msgstr "Mappeovervågning"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Group"
+msgstr "Grupper"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Huggingface ID of a Faster whisper model"
+msgstr "Huggingface ID af Faster Whisper model"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download"
+msgstr "Download"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Show file location"
+msgstr "Vis fil-lokation"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Delete"
+msgstr "Slet"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Downloaded"
+msgstr "Downloadded"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Available for Download"
+msgstr "Tilgængelige til download"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download link to Whisper.cpp ggml model file"
+msgstr "Download link til Whisper.cpp ggml model-fil"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Delete Model"
+msgstr "Slet model"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Are you sure you want to delete the selected model?"
+msgstr "Er du sikker på at du vil slette den valgte model?"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download failed"
+msgstr "Download mislykkedes"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
+msgid "Error"
+msgstr "Fejl"
+
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
+msgid "Record"
+msgstr "Optag"
+
+#: buzz/widgets/record_button.py
+msgid "Stop"
+msgstr "Stop"
+
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
+msgid "Detect Language"
+msgstr "Detekter sprog"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "f.eks. eng, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"Indtast en ISO 639-3 sprogkode (3 bogstaver).\n"
+"Eksempler: eng (engelsk), fra (fransk), deu (tysk),\n"
+"spa (spansk), lav (lettisk)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
+msgid "Run"
+msgstr "Kør"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Model:"
+msgstr "Model:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "First time use of a model may take up to several minutest to load."
+msgstr "Først gang kan brug af en model tage flere minutter at indlæse."
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Api Key:"
+msgstr "API-nøgle:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Task:"
+msgstr "Opgave:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Language:"
+msgstr "Sprog:"
+
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
+msgid "Enter prompt..."
+msgstr "Input tekst..."
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Advanced Settings"
+msgstr "Advancerede indstillinger"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Speech recognition settings"
+msgstr "Talegenkendelsesindstillinger"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Initial Prompt:"
+msgstr "Start prompt:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Translation settings"
+msgstr "Oversættelsesindstillinger"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable AI translation"
+msgstr "Brug AI oversættelse"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "AI model:"
+msgstr "AI model:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
+msgstr ""
+"Oversæt venligst hver tekst, der sendes til dig, fra engelsk til spansk. "
+"Oversættelsen vil blive brugt i et automatiseret system, så tilføj venligst "
+"ingen kommentarer eller noter, kun oversættelsen."
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Instructions for AI:"
+msgstr "Instruktioner for AI:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "Optagelsesindstillinger"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "Tærskelværdi for stilhed:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "Live optagelsestilstand:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "Linjeseparator:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "Transskriberingstrin:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "Skjul ubekræftet"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "Aktiver eksport af live optagelse"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "Eksportmappe:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "Eksport filnavn:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "Tekstfil (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "Eksport filtype:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"Begræns eksportposter\n"
+"(0 = eksporter alle):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Word-level timings"
+msgstr "Ord tidsniveau"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "Eksakt tale"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Export:"
+msgstr "Eksporter:"
+
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
+msgid "Huggingface ID of a model"
+msgstr "Huggingface ID til en model"
+
+#: buzz/widgets/transcriber/advanced_settings_button.py
+msgid "Advanced..."
+msgstr "Advanceret..."
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "Ny filtranskription"
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "Ny URL-transkription"
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "Open Transcript"
+msgstr "Åben transkription"
+
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
+msgid "Cancel Transcription"
+msgstr "Afbryd transkription"
+
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
+msgid "Clear History"
+msgstr "Ryd historik"
+
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "Opdatering tilgængelig"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "In Progress"
+msgstr "Arbejder"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Completed"
+msgstr "Færdig"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed"
+msgstr "Mislykkedes"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Canceled"
+msgstr "Afbrudt"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Queued"
+msgstr "Sat i kø"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "File Name / URL"
+msgstr "Filnavn / URL"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Model"
+msgstr "Model"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Task"
+msgstr "Opgave"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Status"
+msgstr "Status"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Completed"
+msgstr "Dato for færdiggørelse"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "Dato for tilføjelse"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "Noter"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "Nulstil kolonnerækkefølge"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "Genstart transkription"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "Omdøb"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "Tilføj/rediger noter"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "Omdøb transkription"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "Indtast nyt navn:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "Indtast relevante noter til denne transkription:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "Kan ikke genstarte"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr "Kun mislykkede eller annullerede transkriptioner kan genstartes."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "Kunne ikke genstarte transkription: {}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+"Kunne ikke genstarte transkription: modellen er ikke tilgængelig og kunne "
+"ikke downloades."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr ""
+"Kunne ikke genstarte transkription: transkriptionsprocessen blev ikke fundet."
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Live Recording"
+msgstr "Live optagelse"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Click Record to begin..."
+msgstr "Klik Optage for at begynde..."
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Waiting for AI translation..."
+msgstr "Venter på AI oversættelse..."
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Microphone:"
+msgstr "Mikrofon:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "Vis i nyt vindue"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "Tekststørrelse:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "Tema"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "Lys"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "Mørk"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "Brugerdefineret"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "Tekstfarve"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "Baggrundsfarve"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "Fuldskærm"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "Kopiér"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "Kopiér transkription til udklipsholder"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "Intet at kopiere!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "Kopiering mislykkedes"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "Kopieret!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "Vælg tekstfarve"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "Vælg baggrundsfarve"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "An error occurred while starting a new recording:"
+msgstr "Der skete en fejl ved opstart af en ny optagelse:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid ""
+"Please check your audio devices or check the application logs for more "
+"information."
+msgstr ""
+"Tjek venligst dine audioenheder eller tjek applikationens logs for "
+"mereinformation."
+
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "En ny version af Buzz er tilgængelig!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "Nuværende version:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "Ny version:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "Udgivelsesnoter:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "Download og installer"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "Ingen download-URL tilgængelig for din platform."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "Downloader fil {} af {}..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "Downloader fil {} af {} ({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "Download mislykkedes"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "Kunne ikke downloade opdateringen: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "Kunne ikke gemme installationsprogrammet: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "Download fuldført!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "Kunne ikke køre installationsprogrammet: {}"
+
+#: buzz/widgets/about_dialog.py
+msgid "Check for updates"
+msgstr "Tjek for opdateringer"
+
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "Vis logfiler"
+
+#: buzz/widgets/about_dialog.py
+msgid "You're up to date!"
+msgstr "Du er opdateret!"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "Gennemsnitlig lydstyrke"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "Kø"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+msgid "Start"
+msgstr "Start"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+msgid "End"
+msgstr "Slut"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Text"
+msgstr "Tekst"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Translation"
+msgstr "Oversættelse"
+
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+msgid "View"
+msgstr "Vis"
+
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+msgid "Timestamps"
+msgstr "Tidsstempler"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Export"
+msgstr "Eksporter"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Translate"
+msgstr "Oversæt"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize"
+msgstr "Behandel størrelse"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "Identificer talere"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "Find"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "Vis/skjul søgebjælke (Ctrl+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "Find:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "Indtast tekst at søge efter..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "Forrige match (Shift+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "Næste match (Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "Ryd"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "Afspilningskontroller:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "Gentag segment"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr "Aktiver/deaktiver gentagelse ved klik på transkriptionssegmenter"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "Følg lyd"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+"Aktiver/deaktiver at følge den aktuelle lydposition i transkriptionen. Når "
+"aktiveret, scrolles der automatisk til den aktuelle tekst."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "Rul til aktuel"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "Rul til den tekst der tales i øjeblikket"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "1 af 100+ matches"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "1 af "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr " matches"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "Ingen matches fundet"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr " af 100+ matches"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr " af "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "API Key Required"
+msgstr "API-nøgle påkrævet"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Please enter OpenAI API Key in preferences"
+msgstr "Indtast venligst OpenAI API-nøgle i indstillinger"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "Forlæng sluttidspunkt"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "Forlæng slutninger med op til (sekunder)"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "Forlæng slutninger"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "Størrelsesindstillinger"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Desired subtitle length"
+msgstr "Ønskede undertekst længde"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
+msgstr ""
+"Kun tilgængeligt hvis ordniveau-tidsstempler var deaktiveret under "
+"transkription"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "Sammenfletningsindstillinger"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "Sammenflet ved hul"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "Split ved punktum"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "Split ved max længde"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "Sammenflet"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr ""
+"Kun tilgængeligt hvis ordniveau-tidsstempler var aktiveret under "
+"transkription"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr ""
+"Taler-identifikation er ikke tilgængelig: kunne ikke indlæse nødvendige "
+"biblioteker."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 Indsamler transkriptioner"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 Indlæser lyd"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 Indlæser justeringsmodel"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr "3/8 Indlæser justeringsmodel (prøver igen med cache...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+"Kunne ikke indlæse justeringsmodel. Tjek venligst din internetforbindelse og "
+"prøv igen."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 Behandler lyd"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 Forbereder transkriptioner"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 Identificerer talere"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 Kortlægger talere til transkriptioner"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 Identifikation afsluttet"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 Fejl ved identifikation af talere"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "Trin 1: Identificer talere"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "Identificer"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "Klar til at identificere talere"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "Lydfil ikke fundet"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "Trin 2: Navngiv talere"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "Afspil eksempel"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "Sammenflet talerens sætninger"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "Gem"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "Annullerer..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "Annulleret"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Save File"
+msgstr "Gem fil"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Text files"
+msgstr "Tekst filer"
+
+#: buzz/widgets/model_download_progress_dialog.py
+msgid "Downloading model"
+msgstr "Downloader model"
+
+#: buzz/widgets/model_download_progress_dialog.py
+msgid "remaining"
+msgstr "tilbageværende"
+
+#: buzz/widgets/menu_bar.py
+msgid "Import File..."
+msgstr "Importer Fil..."
+
+#: buzz/widgets/menu_bar.py
+msgid "Import URL..."
+msgstr "Importer URL..."
+
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "Importer Mappe..."
+
+#: buzz/widgets/menu_bar.py
+msgid "About"
+msgstr "Om"
+
+#: buzz/widgets/menu_bar.py
+msgid "Preferences..."
+msgstr "Indstillinger..."
+
+#: buzz/widgets/menu_bar.py
+msgid "Help"
+msgstr "Hjælp"
+
+#: buzz/widgets/menu_bar.py
+msgid "File"
+msgstr "Fil"
+
+#: buzz/widgets/main_window.py
+msgid ""
+"Are you sure you want to delete the selected transcription(s)? This action "
+"cannot be undone."
+msgstr ""
+"Er du sikker på at du vil slette den valgte transkription? Denne handling "
+"kan ikke fortrydes."
+
+#: buzz/widgets/main_window.py
+msgid "Select audio file"
+msgstr "Vælg audio-fil"
+
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "Vælg inputmappe"
+
+#: buzz/widgets/main_window.py
+msgid "Unable to save OpenAI API key to keyring"
+msgstr "Kan ikke gemme OpenAI API-nøgle i nøgleringen"
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr "Whisper-serveren kunne ikke starte. Tjek logfilerne for detaljer."
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"Whisper-serveren kunne ikke starte på grund af utilstrækkelig hukommelse. "
+"Prøv igen med en mindre model. For at tvinge CPU-tilstand, brug "
+"miljøvariablen BUZZ_FORCE_CPU=TRUE."
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "Oversæt til engelsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Transcribe"
+msgstr "Transkriber"
+
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "Kinesisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "Russisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "Koreansk"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "Fransk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "Portugisisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "Tyrkisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "Arabisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "Svensk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "Indonesisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "Hindi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "Finsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "Vietnamesisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "Hebraisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "Græsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "Malaysisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "Tjekkisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "Rumænsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "Ungarsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "Tamilsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "Norsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "Thailandsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "Urdu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "Kroatisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "Bulgarsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "Litauisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "Latin"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "Maori"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "Malayalam"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "Walisisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "Slovakisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "Telugu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "Persisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "Bengalsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "Serbisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "Aserbajdsjansk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "Slovensk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "Kannada"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "Estisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "Makedonsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "Bretonsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "Baskisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "Islandsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "Armensk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "Nepalesisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "Mongolsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "Bosnisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "Kasakhisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "Albansk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "Swahili"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "Galicisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "Marathi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "Punjabi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "Singalesisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "Khmer"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "Shona"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "Yoruba"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "Somalisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "Afrikaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "Occitansk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "Georgisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "Hviderussisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "Tadsjikisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "Gujarati"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "Amharisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "Jiddisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "Laotisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "Usbekisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "Færøsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "Haitiansk kreolsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "Pashto"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "Turkmensk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "Nynorsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "Maltesisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "Sanskrit"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "Luxembourgsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "Burmesisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "Tibetansk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "Tagalog"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "Malagassisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "Assamesisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "Tatarisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "Hawaiiansk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "Lingala"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "Hausa"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "Basjkirsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "Javanesisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "Sundanesisk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "Kantonesisk"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
+msgid "A connection error occurred"
+msgstr "Der er opstået en forbindelsesfejl"
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "Starter Whisper.cpp..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "Starter transkription..."
+
+#: buzz/settings/shortcut.py
+msgid "Open Record Window"
+msgstr "Åben optagevinduet"
+
+#: buzz/settings/shortcut.py
+msgid "Import File"
+msgstr "Import fil"
+
+#: buzz/settings/shortcut.py
+msgid "Open Preferences Window"
+msgstr "Åben indstillingsvinduet"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Text"
+msgstr "Vis transkriberede tekst"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Translation"
+msgstr "Vis transkriberede oversættelse"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Timestamps"
+msgstr "Vis transkriptionstidstempler "
+
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "Søg i transskription"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "Gå til næste søgeresultat i transskription"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "Gå til forrige søgeresultat i transskription"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "Rul til aktuel tekst"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "Afspil/Pause lyd"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "Afspil nuværende segment igen"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "Skift afspilningskontroller"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "Reducer segmentets starttidspunkt"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "Øg segmentets starttidspunkt"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "Reducer segmentets sluttidspunkt"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "Øg segmentets sluttidspunkt"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append below"
+msgstr "Tilføj herunder"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append above"
+msgstr "Tilføj herover"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append and correct"
+msgstr "Tilføj og ret"
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
+msgstr ""
+"Taleoprydning mislykkedes! Kontroller din internetforbindelse — en model "
+"skal muligvis hentes ned."
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "Komma-separerede, fx., \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+
+#~ msgid "Temperature:"
+#~ msgstr "Temperatur:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr "Oversæt venligst hver tekst du modtager fra engelsk til spansk."
diff --git a/buzz/locale/de_DE/LC_MESSAGES/buzz.po b/buzz/locale/de_DE/LC_MESSAGES/buzz.po
new file mode 100644
index 00000000..d7a796de
--- /dev/null
+++ b/buzz/locale/de_DE/LC_MESSAGES/buzz.po
@@ -0,0 +1,1686 @@
+# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# Automatically generated, 2025.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
+"PO-Revision-Date: 2025-03-05 14:41+0100\n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Language: de_DE@formal\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 3.5\n"
+
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
+msgid "Import URL"
+msgstr "URL importieren"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "https://example.com/audio.mp3"
+msgstr "https://example.com/audio.mp3"
+
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
+msgid "Ok"
+msgstr "OK"
+
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "URL:"
+msgstr "URL:"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "Invalid URL"
+msgstr "Ungültige URL"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "The URL you entered is invalid."
+msgstr "Die von Ihnen eingegebene URL ist ungültig."
+
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "Live-Transkript-Präsentation"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
+msgid "Reset to Defaults"
+msgstr "Auf Standardeinstellungen zurücksetzen"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "Englisch"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "Katalanisch"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "Dänisch"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "Niederländisch"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "Deutsch"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "Spanisch"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "Italienisch"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "Japanisch"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "Lettisch"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "Polnisch"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "Portugiesisch (Brasilien)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "Ukrainisch"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "Chinesisch (vereinfacht)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "Chinesisch (traditionell)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "Neustart erforderlich!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "Sprache der Benutzeroberfläche"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Font Size"
+msgstr "Schriftgröße"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Test"
+msgstr "Test"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API key"
+msgstr "OpenAI-API-Schlüssel"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI base url"
+msgstr "OpenAI-Basis-URL"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "OpenAI-API-Modell"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Default export file name"
+msgstr "Standardname der Exportdatei"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Enable live recording transcription export"
+msgstr "Export von Live-Aufnahmetranskriptionen aktivieren"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Browse"
+msgstr "Durchsuchen"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Export folder"
+msgstr "Exportordner"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Live recording mode"
+msgstr "Live-Aufnahmemodus"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
+msgstr ""
+"Hinweis: Die Exporteinstellungen für Live-Aufnahmen werden in einer "
+"zukünftigen Version in die Erweiterten Einstellungen im Live-Aufnahme-"
+"Bildschirm verschoben."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "8-Bit-Quantisierung zur Reduzierung des Speicherverbrauchs verwenden"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"Gilt für Huggingface- und Faster Whisper-Modelle. Reduziert den GPU-"
+"Speicherverbrauch, kann jedoch die Transkriptionsqualität leicht verringern."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "GPU-Arbeitsspeicher reduzieren"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "Nur CPU verwenden und GPU-Beschleunigung deaktivieren"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+"Diese Option aktivieren, wenn größere Modelle nicht in den GPU-Speicher "
+"passen und Buzz abstürzt"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "GPU deaktivieren"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API Key Test"
+msgstr "OpenAI-API-Schlüssel Test"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Your API key is valid. Buzz will use this key to perform Whisper API "
+"transcriptions and AI translations."
+msgstr ""
+"Ihr API-Schlüssel ist gültig. Buzz verwendet diesen Schlüssel, um Whisper-"
+"API-Transkriptionen und KI-Übersetzungen durchzuführen."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Invalid API key"
+msgstr "Ungültiger API-Schlüssel"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
+msgstr ""
+"Die API unterstützt nur Base64-Zeichen (A-Za-z0-9+/=_-). Andere Zeichen im "
+"API-Schlüssel können Fehler verursachen."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Select Export Folder"
+msgstr "Exportordner auswählen"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"OpenAI API returned invalid response. Please check the API url or your key. "
+"Transcription and translation may still work if the API does not support key "
+"validation."
+msgstr ""
+"Die OpenAI-API hat eine ungültige Antwort zurückgegeben. Bitte überprüfen "
+"Sie die API-URL oder Ihren Schlüssel. Transkription und Übersetzung "
+"funktionieren möglicherweise weiterhin, wenn die API keine "
+"Schlüsselvalidierung unterstützt."
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Enable folder watch"
+msgstr "Ordner überwachen aktivieren"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "Verarbeitete Dateien löschen"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Input folder"
+msgstr "Eingabeordner"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Output folder"
+msgstr "Ausgabeordner"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Select Input Folder"
+msgstr "Eingabeordner auswählen"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Select Output Folder"
+msgstr "Ausgabeordner auswählen"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Preferences"
+msgstr "Einstellungen"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "General"
+msgstr "Allgemein"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Models"
+msgstr "Modelle"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Shortcuts"
+msgstr "Tastenkombinationen"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Folder Watch"
+msgstr "Ordner überwachen"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Group"
+msgstr "Gruppe"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Huggingface ID of a Faster whisper model"
+msgstr "Huggingface-ID eines Faster Whisper-Modells"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download"
+msgstr "Herunterladen"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Show file location"
+msgstr "Dateispeicherort anzeigen"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Delete"
+msgstr "Löschen"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Downloaded"
+msgstr "Heruntergeladen"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Available for Download"
+msgstr "Zum Herunterladen verfügbar"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download link to Whisper.cpp ggml model file"
+msgstr "Laden Sie den Link zur ggml-Modelldatei Whisper.cpp herunter"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Delete Model"
+msgstr "Modell löschen"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Are you sure you want to delete the selected model?"
+msgstr "Sind Sie sicher, dass Sie das ausgewählte Modell löschen möchten?"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download failed"
+msgstr "Der Download ist fehlgeschlagen"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
+msgid "Error"
+msgstr "Fehler"
+
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
+msgid "Record"
+msgstr "Aufnehmen"
+
+#: buzz/widgets/record_button.py
+msgid "Stop"
+msgstr "Stoppen"
+
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
+msgid "Detect Language"
+msgstr "Sprache erkennen"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "z.B. eng, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"Geben Sie einen ISO 639-3-Sprachcode (3 Buchstaben) ein.\n"
+"Beispiele: eng (Englisch), fra (Französisch), deu (Deutsch),\n"
+"spa (Spanisch), lav (Lettisch)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
+msgid "Run"
+msgstr "Ausführen"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Model:"
+msgstr "Modell:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "First time use of a model may take up to several minutest to load."
+msgstr ""
+"Bei der ersten Verwendung eines Modells kann das Laden mehrere Minuten "
+"dauern."
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Api Key:"
+msgstr "API-Schlüssel:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Task:"
+msgstr "Aufgabe:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Language:"
+msgstr "Sprache:"
+
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
+msgid "Enter prompt..."
+msgstr "Anweisung eingeben..."
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Advanced Settings"
+msgstr "Erweiterte Einstellungen"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Speech recognition settings"
+msgstr "Einstellungen für die Spracherkennung"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Initial Prompt:"
+msgstr "Erste Anweisung:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Translation settings"
+msgstr "Übersetzungseinstellungen"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable AI translation"
+msgstr "KI-Übersetzung aktivieren"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "AI model:"
+msgstr "KI-Modell:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
+msgstr ""
+"Bitte übersetzen Sie jeden Text, der Ihnen gesendet wird, vom Englischen ins "
+"Spanische. Die Übersetzung wird in einem automatisierten System verwendet. "
+"Bitte fügen Sie keine Kommentare oder Anmerkungen hinzu, nur die Übersetzung."
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Instructions for AI:"
+msgstr "Anweisung zur KI:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "Aufnahmeeinstellungen"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "Stille-Schwellenwert:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "Live-Aufnahmemodus:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "Zeilentrenner:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "Transkriptionsschritt:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "Unbestätigtes ausblenden"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "Export von Live-Aufnahmen aktivieren"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "Exportordner:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "Exportdateiname:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "Textdatei (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "Exportdateityp:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"Exporteinträge begrenzen\n"
+"(0 = alle exportieren):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Word-level timings"
+msgstr "Zeitangaben auf Wortebene"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "Sprache extrahieren"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Export:"
+msgstr "Export:"
+
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
+msgid "Huggingface ID of a model"
+msgstr "Huggingface-ID eines Models"
+
+#: buzz/widgets/transcriber/advanced_settings_button.py
+msgid "Advanced..."
+msgstr "Erweitert..."
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "Neue Dateitranskription"
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "Neue URL-Transkription"
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "Open Transcript"
+msgstr "Transkript öffnen"
+
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
+msgid "Cancel Transcription"
+msgstr "Transkription abbrechen"
+
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
+msgid "Clear History"
+msgstr "Verlauf löschen"
+
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "Update verfügbar"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "In Progress"
+msgstr "Im Gange"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Completed"
+msgstr "Fertiggestellt"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed"
+msgstr "Fehlgeschlagen"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Canceled"
+msgstr "Abgebrochen"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Queued"
+msgstr "In der Warteschlange"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "File Name / URL"
+msgstr "Dateiname/URL"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Model"
+msgstr "Modell"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Task"
+msgstr "Aufgabe"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Status"
+msgstr "Status"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Completed"
+msgstr "Datum abgeschlossen"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "Datum hinzugefügt"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "Notizen"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "Spaltenreihenfolge zurücksetzen"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "Transkription neu starten"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "Umbenennen"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "Notizen hinzufügen/bearbeiten"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "Transkription umbenennen"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "Neuen Namen eingeben:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "Relevante Notizen für diese Transkription eingeben:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "Neustart nicht möglich"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr ""
+"Nur fehlgeschlagene oder abgebrochene Transkriptionen können neu gestartet "
+"werden."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "Fehler beim Neustart der Transkription: {}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+"Transkription konnte nicht neu gestartet werden: Modell nicht verfügbar und "
+"konnte nicht heruntergeladen werden."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr ""
+"Transkription konnte nicht neu gestartet werden: Transkriptions-Worker nicht "
+"gefunden."
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Live Recording"
+msgstr "Live-Aufnahme"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Click Record to begin..."
+msgstr "Auf Aufnehmen klicken um zu beginnen …"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Waiting for AI translation..."
+msgstr "Warten auf KI-Übersetzung..."
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Microphone:"
+msgstr "Mikrofon:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "In neuem Fenster anzeigen"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "Textgröße:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "Design"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "Hell"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "Dunkel"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "Benutzerdefiniert"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "Textfarbe"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "Hintergrundfarbe"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "Vollbild"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "Kopieren"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "Transkription in die Zwischenablage kopieren"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "Nichts zum Kopieren vorhanden!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "Kopieren fehlgeschlagen"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "Kopiert!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "Textfarbe auswählen"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "Hintergrundfarbe auswählen"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "An error occurred while starting a new recording:"
+msgstr "Beim Starten einer neuen Aufnahme ist ein Fehler aufgetreten:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid ""
+"Please check your audio devices or check the application logs for more "
+"information."
+msgstr ""
+"Bitte überprüfen Sie Ihre Audiogeräte oder prüfen Sie die "
+"Anwendungsprotokolle für weitere Informationen."
+
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "Eine neue Version von Buzz ist verfügbar!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "Aktuelle Version:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "Neue Version:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "Versionshinweise:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "Herunterladen und installieren"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "Kein Download-Link für Ihre Plattform verfügbar."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "Datei {} von {} wird heruntergeladen..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "Datei {} von {} wird heruntergeladen ({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "Download fehlgeschlagen"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "Das Update konnte nicht heruntergeladen werden: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "Installer konnte nicht gespeichert werden: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "Download abgeschlossen!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "Installer konnte nicht ausgeführt werden: {}"
+
+#: buzz/widgets/about_dialog.py
+msgid "Check for updates"
+msgstr "Nach Updates suchen"
+
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "Protokolle anzeigen"
+
+#: buzz/widgets/about_dialog.py
+msgid "You're up to date!"
+msgstr "Sie sind auf dem Laufenden!"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "Durchschnittliche Lautstärke"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "Warteschlange"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+msgid "Start"
+msgstr "Start"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+msgid "End"
+msgstr "Ende"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Text"
+msgstr "Text"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Translation"
+msgstr "Übersetzung"
+
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+msgid "View"
+msgstr "Anzeigen"
+
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+msgid "Timestamps"
+msgstr "Zeitstempel"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Export"
+msgstr "Export"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Translate"
+msgstr "Übersetzen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize"
+msgstr "Größe ändern"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "Sprecher identifizieren"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "Suchen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "Suchleiste ein-/ausblenden (Strg+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "Suchen:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "Suchtext eingeben..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "Vorheriges Ergebnis (Umschalt+Eingabe)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "Nächstes Ergebnis (Strg+Eingabe)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "Löschen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "Wiedergabesteuerung:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "Segment wiederholen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr ""
+"Wiederholen beim Klicken auf Transkript-Segmente aktivieren/deaktivieren"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "Audio folgen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+"Aktuelle Audioposition im Transkript verfolgen aktivieren/deaktivieren. Bei "
+"Aktivierung wird automatisch zum aktuellen Text gescrollt."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "Zur aktuellen Stelle scrollen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "Zum aktuell gesprochenen Text scrollen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "1 von 100+ Treffern"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "1 von "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr " Treffer"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "Keine Treffer gefunden"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr " von 100+ Treffern"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr " von "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "API Key Required"
+msgstr "API-Schlüssel erforderlich"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Please enter OpenAI API Key in preferences"
+msgstr "Bitte geben Sie den OpenAI-API-Schlüssel in den Einstellungen ein"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "Endzeit verlängern"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "Enden um bis zu (Sekunden) verlängern"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "Enden verlängern"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "Größenänderungsoptionen"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Desired subtitle length"
+msgstr "Gewünschte Untertitellänge"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
+msgstr ""
+"Nur verfügbar, wenn Zeitangaben auf Wortebene bei der Transkription "
+"deaktiviert waren"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "Zusammenführungsoptionen"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "Nach Abstand zusammenführen"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "Durch Satzzeichen getrennt"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "Aufgeteilt nach maximaler Länge"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "Vereinigen"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr ""
+"Nur verfügbar, wenn Zeitangaben auf Wortebene bei der Transkription "
+"aktiviert waren"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr ""
+"Sprecheridentifikation nicht verfügbar: Erforderliche Bibliotheken konnten "
+"nicht geladen werden."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 Transkripte werden gesammelt"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 Audio wird geladen"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 Ausrichtungsmodell wird geladen"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr "3/8 Ausrichtungsmodell wird geladen (Wiederholung mit Cache...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+"Ausrichtungsmodell konnte nicht geladen werden. Bitte überprüfen Sie Ihre "
+"Internetverbindung und versuchen Sie es erneut."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 Audio wird verarbeitet"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 Transkripte werden vorbereitet"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 Sprecher werden identifiziert"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 Sprecher werden den Transkripten zugeordnet"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 Identifikation abgeschlossen"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 Fehler bei der Sprecheridentifikation"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "Schritt 1: Sprecher identifizieren"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "Identifizieren"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "Bereit zur Sprecheridentifikation"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "Audiodatei nicht gefunden"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "Schritt 2: Sprecher benennen"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "Beispiel abspielen"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "Sprechersätze zusammenführen"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "Speichern"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "Wird abgebrochen..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "Abgebrochen"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Save File"
+msgstr "Datei speichern"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Text files"
+msgstr "Textdateien"
+
+#: buzz/widgets/model_download_progress_dialog.py
+msgid "Downloading model"
+msgstr "Modell wird heruntergeladen"
+
+#: buzz/widgets/model_download_progress_dialog.py
+msgid "remaining"
+msgstr "verbleibend"
+
+#: buzz/widgets/menu_bar.py
+msgid "Import File..."
+msgstr "Datei importieren..."
+
+#: buzz/widgets/menu_bar.py
+msgid "Import URL..."
+msgstr "URL importieren..."
+
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "Ordner importieren..."
+
+#: buzz/widgets/menu_bar.py
+msgid "About"
+msgstr "Über"
+
+#: buzz/widgets/menu_bar.py
+msgid "Preferences..."
+msgstr "Einstellungen..."
+
+#: buzz/widgets/menu_bar.py
+msgid "Help"
+msgstr "Hilfe"
+
+#: buzz/widgets/menu_bar.py
+msgid "File"
+msgstr "Datei"
+
+#: buzz/widgets/main_window.py
+msgid ""
+"Are you sure you want to delete the selected transcription(s)? This action "
+"cannot be undone."
+msgstr ""
+"Sind Sie sicher, dass Sie die ausgewählte(n) Transkription(en) löschen "
+"möchten? Diese Aktion kann nicht rückgängig gemacht werden."
+
+#: buzz/widgets/main_window.py
+msgid "Select audio file"
+msgstr "Audiodatei auswählen"
+
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "Eingabeordner auswählen"
+
+#: buzz/widgets/main_window.py
+msgid "Unable to save OpenAI API key to keyring"
+msgstr ""
+"Der OpenAI-API-Schlüssel kann nicht im Schlüsselbund gespeichert werden"
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr ""
+"Whisper-Server konnte nicht gestartet werden. Details in den Protokollen "
+"prüfen."
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"Whisper-Server konnte aufgrund von unzureichendem Arbeitsspeicher nicht "
+"gestartet werden. Bitte versuchen Sie es mit einem kleineren Modell erneut. "
+"Um den CPU-Modus zu erzwingen, verwenden Sie die Umgebungsvariable "
+"BUZZ_FORCE_CPU=TRUE."
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "Ins Englische übersetzen"
+
+#: buzz/transcriber/transcriber.py
+msgid "Transcribe"
+msgstr "Transkribieren"
+
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "Chinesisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "Russisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "Koreanisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "Französisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "Portugiesisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "Türkisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "Arabisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "Schwedisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "Indonesisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "Hindi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "Finnisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "Vietnamesisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "Hebräisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "Griechisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "Malaiisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "Tschechisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "Rumänisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "Ungarisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "Tamilisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "Norwegisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "Thailändisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "Urdu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "Kroatisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "Bulgarisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "Litauisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "Latein"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "Maori"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "Malayalam"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "Walisisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "Slowakisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "Telugu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "Persisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "Bengalisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "Serbisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "Aserbaidschanisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "Slowenisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "Kannada"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "Estnisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "Mazedonisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "Bretonisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "Baskisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "Isländisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "Armenisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "Nepali"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "Mongolisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "Bosnisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "Kasachisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "Albanisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "Suaheli"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "Galizisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "Marathi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "Punjabi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "Singhalesisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "Khmer"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "Schona"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "Yoruba"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "Somali"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "Afrikanisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "Okzitanisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "Georgisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "Belarussisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "Tadschikisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "Gujarati"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "Amharisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "Jiddisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "Lao"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "Usbekisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "Färöisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "Haitianisch-Kreolisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "Paschtu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "Turkmenisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "Nynorsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "Maltesisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "Sanskrit"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "Luxemburgisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "Tibetisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "Tagalog"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "Madagassisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "Assamisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "Tatar"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "Hawaiianisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "Lingala"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "Hausa"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "Baschkirisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "Javanisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "Sundanesisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "Kantonesisch"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
+msgid "A connection error occurred"
+msgstr "Ein Verbindungsfehler ist aufgetreten"
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "Whisper.cpp wird gestartet..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "Transkription wird gestartet..."
+
+#: buzz/settings/shortcut.py
+msgid "Open Record Window"
+msgstr "Aufnahmefenster öffnen"
+
+#: buzz/settings/shortcut.py
+msgid "Import File"
+msgstr "Datei importieren"
+
+#: buzz/settings/shortcut.py
+msgid "Open Preferences Window"
+msgstr "Einstellungsfenster öffnen"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Text"
+msgstr "Transkriptionstext anzeigen"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Translation"
+msgstr "Übersetzung des Transkripts anzeigen"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Timestamps"
+msgstr "Zeitstempel des Transkripts anzeigen"
+
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "Transkript durchsuchen"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "Zum nächsten Transkript-Suchergebnis gehen"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "Zum vorherigen Transkript-Suchergebnis gehen"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "Zum aktuellen Text scrollen"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "Audio abspielen/pausieren"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "Aktuelles Segment erneut abspielen"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "Wiedergabesteuerung ein-/ausblenden"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "Segmentanfangszeit verringern"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "Segmentanfangszeit erhöhen"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "Segmentendzeit verringern"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "Segmentendzeit erhöhen"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append below"
+msgstr "Unten anhängen"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append above"
+msgstr "Oben anhängen"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append and correct"
+msgstr "Anhängen und korrigieren"
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
+msgstr ""
+"Sprachextraktion fehlgeschlagen! Bitte Internetverbindung prüfen — ein "
+"Modell muss möglicherweise heruntergeladen werden."
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "Durch Kommas getrennt, z.B. \"0,0, 0,2, 0,4, 0,6, 0,8, 1,0\""
+
+#~ msgid "Temperature:"
+#~ msgstr "Temperatur:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr ""
+#~ "Bitte übersetzen Sie jeden an Sie gesendeten Text von Englisch nach "
+#~ "Spanisch."
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "Übersetzungsfehler, Protokolle prüfen!"
+
+#~ msgid "Snap permission notice"
+#~ msgstr "Snap-Berechtigungsmitteilung"
+
+#~ msgid ""
+#~ "Detected missing permissions, please check that snap permissions have "
+#~ "been granted"
+#~ msgstr ""
+#~ "Es wurden fehlende Berechtigungen festgestellt. Bitte überprüfen Sie, ob "
+#~ "Snap-Berechtigungen erteilt wurden"
+
+#~ msgid ""
+#~ "To enable necessary permissions run the following commands in the terminal"
+#~ msgstr ""
+#~ "Um die erforderlichen Berechtigungen zu aktivieren, führen Sie die "
+#~ "folgenden Befehle im Terminal aus"
+
+#~ msgid "Close"
+#~ msgstr "Schließen"
+
+#~ msgid "Enter instructions for AI on how to translate..."
+#~ msgstr "Geben Sie Anweisungen für die KI zum Übersetzen ein..."
diff --git a/buzz/locale/en_US/LC_MESSAGES/buzz.po b/buzz/locale/en_US/LC_MESSAGES/buzz.po
new file mode 100644
index 00000000..644ce509
--- /dev/null
+++ b/buzz/locale/en_US/LC_MESSAGES/buzz.po
@@ -0,0 +1,1596 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
+msgid "Import URL"
+msgstr ""
+
+#: buzz/widgets/import_url_dialog.py
+msgid "https://example.com/audio.mp3"
+msgstr ""
+
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
+msgid "Ok"
+msgstr ""
+
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
+msgid "Cancel"
+msgstr ""
+
+#: buzz/widgets/import_url_dialog.py
+msgid "URL:"
+msgstr ""
+
+#: buzz/widgets/import_url_dialog.py
+msgid "Invalid URL"
+msgstr ""
+
+#: buzz/widgets/import_url_dialog.py
+msgid "The URL you entered is invalid."
+msgstr ""
+
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
+msgid "Reset to Defaults"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Font Size"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Test"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API key"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI base url"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Default export file name"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Enable live recording transcription export"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Browse"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Export folder"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Live recording mode"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API Key Test"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Your API key is valid. Buzz will use this key to perform Whisper API "
+"transcriptions and AI translations."
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Invalid API key"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Select Export Folder"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"OpenAI API returned invalid response. Please check the API url or your key. "
+"Transcription and translation may still work if the API does not support key "
+"validation."
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Enable folder watch"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Input folder"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Output folder"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Select Input Folder"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Select Output Folder"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Preferences"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "General"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Models"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Shortcuts"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Folder Watch"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Group"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Huggingface ID of a Faster whisper model"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Show file location"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Delete"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Downloaded"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Available for Download"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download link to Whisper.cpp ggml model file"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Delete Model"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Are you sure you want to delete the selected model?"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download failed"
+msgstr ""
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
+msgid "Error"
+msgstr ""
+
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
+msgid "Record"
+msgstr ""
+
+#: buzz/widgets/record_button.py
+msgid "Stop"
+msgstr ""
+
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
+msgid "Detect Language"
+msgstr ""
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr ""
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
+msgid "Run"
+msgstr ""
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Model:"
+msgstr ""
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "First time use of a model may take up to several minutest to load."
+msgstr ""
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Api Key:"
+msgstr ""
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Task:"
+msgstr ""
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Language:"
+msgstr ""
+
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
+msgid "Enter prompt..."
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Advanced Settings"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Speech recognition settings"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Initial Prompt:"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Translation settings"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable AI translation"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "AI model:"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Instructions for AI:"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "Hide unconfirmed"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Word-level timings"
+msgstr ""
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr ""
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Export:"
+msgstr ""
+
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
+msgid "Huggingface ID of a model"
+msgstr ""
+
+#: buzz/widgets/transcriber/advanced_settings_button.py
+msgid "Advanced..."
+msgstr ""
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr ""
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr ""
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "Open Transcript"
+msgstr ""
+
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
+msgid "Cancel Transcription"
+msgstr ""
+
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
+msgid "Clear History"
+msgstr ""
+
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "In Progress"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Completed"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Canceled"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Queued"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "File Name / URL"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Model"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Task"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Status"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Completed"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Live Recording"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Click Record to begin..."
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Waiting for AI translation..."
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Microphone:"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "An error occurred while starting a new recording:"
+msgstr ""
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid ""
+"Please check your audio devices or check the application logs for more "
+"information."
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr ""
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr ""
+
+#: buzz/widgets/about_dialog.py
+msgid "Check for updates"
+msgstr ""
+
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr ""
+
+#: buzz/widgets/about_dialog.py
+msgid "You're up to date!"
+msgstr ""
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr ""
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+msgid "Start"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+msgid "End"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Text"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Translation"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+msgid "View"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+msgid "Timestamps"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Export"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Translate"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "API Key Required"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Please enter OpenAI API Key in preferences"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Desired subtitle length"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Save File"
+msgstr ""
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Text files"
+msgstr ""
+
+#: buzz/widgets/model_download_progress_dialog.py
+msgid "Downloading model"
+msgstr ""
+
+#: buzz/widgets/model_download_progress_dialog.py
+msgid "remaining"
+msgstr ""
+
+#: buzz/widgets/menu_bar.py
+msgid "Import File..."
+msgstr ""
+
+#: buzz/widgets/menu_bar.py
+msgid "Import URL..."
+msgstr ""
+
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr ""
+
+#: buzz/widgets/menu_bar.py
+msgid "About"
+msgstr ""
+
+#: buzz/widgets/menu_bar.py
+msgid "Preferences..."
+msgstr ""
+
+#: buzz/widgets/menu_bar.py
+msgid "Help"
+msgstr ""
+
+#: buzz/widgets/menu_bar.py
+msgid "File"
+msgstr ""
+
+#: buzz/widgets/main_window.py
+msgid ""
+"Are you sure you want to delete the selected transcription(s)? This action "
+"cannot be undone."
+msgstr ""
+
+#: buzz/widgets/main_window.py
+msgid "Select audio file"
+msgstr ""
+
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr ""
+
+#: buzz/widgets/main_window.py
+msgid "Unable to save OpenAI API key to keyring"
+msgstr ""
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr ""
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Transcribe"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr ""
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr ""
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
+msgid "A connection error occurred"
+msgstr ""
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr ""
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Open Record Window"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Import File"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Open Preferences Window"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Text"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Translation"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Timestamps"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr ""
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr ""
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append below"
+msgstr ""
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append above"
+msgstr ""
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append and correct"
+msgstr ""
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
+msgstr ""
diff --git a/buzz/locale/es_ES/LC_MESSAGES/buzz.po b/buzz/locale/es_ES/LC_MESSAGES/buzz.po
index fa32fa7e..f940aa34 100644
--- a/buzz/locale/es_ES/LC_MESSAGES/buzz.po
+++ b/buzz/locale/es_ES/LC_MESSAGES/buzz.po
@@ -7,437 +7,767 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-11-03 08:32+0200\n"
-"PO-Revision-Date: 2023-11-09 04:35-0600\n"
-"Last-Translator: Adolfo Jayme Barrientos \n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
+"PO-Revision-Date: 2025-09-08 12:43+0200\n"
+"Last-Translator: Éric Duarte \n"
"Language-Team: \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 3.4.1\n"
+"X-Generator: Poedit 3.7\n"
-#: buzz/widgets/import_url_dialog.py:19 buzz/settings/shortcut.py:19
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
msgid "Import URL"
-msgstr ""
+msgstr "URL de importación"
-#: buzz/widgets/import_url_dialog.py:22
+#: buzz/widgets/import_url_dialog.py
msgid "https://example.com/audio.mp3"
-msgstr ""
+msgstr "https://ejemplo.com/audio.mp3"
-#: buzz/widgets/import_url_dialog.py:28
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:69
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:245
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:97
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:295
-#: buzz/widgets/main_window.py:234
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
msgid "Ok"
-msgstr ""
+msgstr "Ok"
-#: buzz/widgets/import_url_dialog.py:29
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:70
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:246
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:296
-#: buzz/widgets/model_download_progress_dialog.py:29
-#: buzz/widgets/main_window.py:235
-#, fuzzy
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
msgid "Cancel"
-msgstr "Cancelado"
+msgstr "Cancelar"
-#: buzz/widgets/import_url_dialog.py:34
+#: buzz/widgets/import_url_dialog.py
msgid "URL:"
-msgstr ""
+msgstr "URL:"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "Invalid URL"
-msgstr ""
+msgstr "URL inválido"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "The URL you entered is invalid."
-msgstr ""
-
-#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py:29
-msgid "Reset to Defaults"
-msgstr ""
-
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:52
-msgid "Font Size"
-msgstr ""
-
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:61
-msgid "Test"
-msgstr ""
-
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:67
-msgid "OpenAI API key"
-msgstr ""
-
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:80
-msgid "OpenAI base url"
-msgstr ""
-
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:89
-msgid "Default export file name"
-msgstr ""
-
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:95
-msgid "Enable live recording transcription export"
-msgstr ""
-
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:101
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:47
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:50
-msgid "Browse"
-msgstr ""
-
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:120
-msgid "Export folder"
-msgstr ""
+msgstr "La URL que has introducido no es válida."
# automatic translation
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:131
-#, fuzzy
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "Presentación de transcripción en vivo"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
+msgid "Reset to Defaults"
+msgstr "Reestablecer los Valores por Defecto"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "Inglés"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "Catalán"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "Danés"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "Holandés"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "Alemán"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "Español"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "Italiano"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "Japonés"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "Letón"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "Polaco"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "Portugués (Brasil)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "Ucraniano"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "Chino (simplificado)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "Chino (tradicional)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "¡Es necesario reiniciar!"
+
+# automatic translation
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "Lenguaje de interfaz de usuario"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Font Size"
+msgstr "Tamaño de fuente"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Test"
+msgstr "Prueba"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API key"
+msgstr "Clave API de OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI base url"
+msgstr "URL base de OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "Modelo de la API de OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Default export file name"
+msgstr "Nombre de archivo de exportación predeterminado"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Enable live recording transcription export"
+msgstr "Habilitar la exportación de transcripción de grabación en vivo"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Browse"
+msgstr "Navegar"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Export folder"
+msgstr "Carpeta de exportación"
+
+# automatic translation
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Live recording mode"
-msgstr "Grabación en vivo"
+msgstr "Modo de grabación en directo"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:156
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:162
-msgid "OpenAI API Key Test"
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
msgstr ""
+"Nota: Los ajustes de exportación de grabación en vivo se trasladarán a la "
+"Configuración avanzada en la pantalla de grabación en vivo en una versión "
+"futura."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:157
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "Usar cuantización de 8 bits para reducir el uso de memoria"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"Se aplica a los modelos Huggingface y Faster Whisper. Reduce el uso de "
+"memoria de la GPU, pero puede disminuir ligeramente la calidad de la "
+"transcripción."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "Reducir la RAM de la GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "Usa solo CPU y desactiva la aceleración de GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+"Configure esto si los modelos más grandes no se ajustan a la memoria de su "
+"GPU y Buzz se bloquea"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "Desactivar GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API Key Test"
+msgstr "Prueba de la clave API de OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"Your API key is valid. Buzz will use this key to perform Whisper API "
"transcriptions and AI translations."
msgstr ""
+"Tu clave API es válida. Buzz usará esta clave para realizar transcripciones "
+"de la API de Whisper y traducciones de IA."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:173
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Invalid API key"
-msgstr ""
+msgstr "Clave API no válida"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:174
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
-"API supports only base64 characters (A-Za-z0-9+/=). Other characters in API "
-"key may cause errors."
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
msgstr ""
+"La API solo admite caracteres base64 (A-Za-z0-9+/=_-). Otros caracteres de "
+"la clave de API pueden causar errores."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:192
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Select Export Folder"
-msgstr ""
+msgstr "Seleccione Exportar carpeta"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:244
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"OpenAI API returned invalid response. Please check the API url or your key. "
"Transcription and translation may still work if the API does not support key "
"validation."
msgstr ""
+"La API de OpenAI devolvió una respuesta no válida. Compruebe la URL de la "
+"API o su clave. Es posible que la transcripción y la traducción sigan "
+"funcionando si la API no admite la validación de claves."
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:42
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Enable folder watch"
-msgstr ""
+msgstr "Habilitar la inspección de carpetas"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "Eliminar archivos procesados"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Input folder"
-msgstr ""
+msgstr "Carpeta de entrada"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Output folder"
-msgstr ""
+msgstr "Carpeta de salida"
# automatic translation
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:105
-#, fuzzy
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Input Folder"
-msgstr "Seleccionar archivo de audio"
+msgstr "Seleccione la carpeta de entrada"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:114
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Output Folder"
-msgstr ""
+msgstr "Seleccione la carpeta de salida"
# automatic translation
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:43
-#, fuzzy
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Preferences"
-msgstr "Preferencias..."
+msgstr "Preferencias"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:50
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "General"
-msgstr "Generales"
+msgstr "General"
# automatic translation
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:53
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Models"
msgstr "Modelos"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:57
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Shortcuts"
msgstr "Atajos"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:63
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Folder Watch"
-msgstr ""
+msgstr "Vigilancia de carpetas"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:70
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Group"
-msgstr ""
+msgstr "Grupo"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:82
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Huggingface ID of a Faster whisper model"
-msgstr ""
+msgstr "Identificación de un modelo Más rápido whisper"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download"
msgstr "Descargar"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:99
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Show file location"
msgstr "Mostrar ubicación de archivo"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:107
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete"
msgstr "Eliminar"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:138
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Downloaded"
msgstr "Descargado"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:143
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Available for Download"
msgstr "Disponible para descarga"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:164
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download link to Whisper.cpp ggml model file"
-msgstr ""
+msgstr "Enlace de descarga a Whisper.cpp archivo de modelo ggml"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:239
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete Model"
msgstr "Eliminar modelo"
# automatic translation
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:240
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Are you sure you want to delete the selected model?"
msgstr "¿Confirma que quiere eliminar el modelo seleccionado?"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:268
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download failed"
-msgstr "Descargado"
+msgstr "Descarga fallida"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:269
-#: buzz/widgets/main_window.py:291 buzz/model_loader.py:503
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
msgid "Error"
msgstr "Error"
# automatic translation
-#: buzz/widgets/record_button.py:10 buzz/widgets/record_button.py:17
-#: buzz/widgets/main_window_toolbar.py:35
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
msgid "Record"
msgstr "Grabar"
# automatic translation
-#: buzz/widgets/record_button.py:21
+#: buzz/widgets/record_button.py
msgid "Stop"
msgstr "Detener"
# automatic translation
-#: buzz/widgets/transcriber/languages_combo_box.py:35
-#: buzz/transcriber/transcriber.py:159
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
msgid "Detect Language"
msgstr "Detectar idioma"
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "p. ej., eng, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"Introduzca un código de idioma ISO 639-3 (3 letras).\n"
+"Ejemplos: eng (inglés), fra (francés), deu (alemán),\n"
+"spa (español), lav (letón)"
+
# automatic translation
-#: buzz/widgets/transcriber/file_transcriber_widget.py:79
+#: buzz/widgets/transcriber/file_transcriber_widget.py
msgid "Run"
msgstr "Ejecutar"
# automatic translation
-#: buzz/widgets/transcriber/transcription_options_group_box.py:92
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Model:"
msgstr "Modelo:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:104
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
msgid "First time use of a model may take up to several minutest to load."
msgstr ""
+"El uso por primera vez de un modelo puede tardar varios minutos en cargarse."
-#: buzz/widgets/transcriber/transcription_options_group_box.py:113
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Api Key:"
-msgstr ""
+msgstr "Clave API:"
# automatic translation
-#: buzz/widgets/transcriber/transcription_options_group_box.py:114
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Task:"
msgstr "Tarea:"
# automatic translation
-#: buzz/widgets/transcriber/transcription_options_group_box.py:115
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Language:"
msgstr "Idioma:"
-#: buzz/widgets/transcriber/initial_prompt_text_edit.py:10
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
msgid "Enter prompt..."
-msgstr ""
+msgstr "Introducir prompt..."
# automatic translation
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:33
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Advanced Settings"
msgstr "Configuración avanzada"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:37
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Speech recognition settings"
-msgstr ""
+msgstr "Configuración de reconocimiento de voz"
# automatic translation
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:46
-msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-msgstr "Separados por comas, p. ej., «0.0, 0.2, 0.4, 0.6, 0.8, 1.0»"
-
-# automatic translation
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:55
-msgid "Temperature:"
-msgstr "Temperatura:"
-
-# automatic translation
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:66
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Initial Prompt:"
msgstr "Indicación inicial:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:68
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Translation settings"
-msgstr ""
+msgstr "Ajustes de traducción"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:72
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Enable AI translation"
-msgstr ""
+msgstr "Habilite la traducción con IA"
# automatic translation
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:84
-#, fuzzy
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "AI model:"
-msgstr "Modelo:"
+msgstr "Modelo de IA:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:88
-msgid "Enter instructions for AI on how to translate..."
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
msgstr ""
+"Por favor, traduce cada texto que se te envíe del inglés al español. La "
+"traducción se utilizará en un sistema automatizado, por favor no añadas "
+"comentarios ni notas, solo la traducción."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:92
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Instructions for AI:"
-msgstr ""
+msgstr "Instrucciones para la IA:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "Ajustes de grabación"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "Umbral de silencio:"
# automatic translation
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:42
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "Modo de grabación en directo:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "Separador de línea:"
+
+# automatic translation
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "Paso de transcripción:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "Ocultar no confirmado"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "Habilitar la exportación de grabación en vivo"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "Carpeta de exportación:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "Nombre del archivo de exportación:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "Archivo de texto (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "Tipo de archivo de exportación:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"Limitar entradas de exportación\n"
+"(0 = exportar todo):"
+
+# automatic translation
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Word-level timings"
msgstr "Tiempos a nivel de palabra"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:66
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "Extraer voz"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Export:"
-msgstr ""
+msgstr "Exportar:"
-#: buzz/widgets/transcriber/hugging_face_search_line_edit.py:37
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
msgid "Huggingface ID of a model"
-msgstr ""
+msgstr "Huggingface ID de un modelo"
-#: buzz/widgets/transcriber/advanced_settings_button.py:9
+#: buzz/widgets/transcriber/advanced_settings_button.py
msgid "Advanced..."
-msgstr ""
+msgstr "Avanzado..."
# automatic translation
-#: buzz/widgets/main_window_toolbar.py:39
-msgid "New Transcription"
-msgstr "Transcripción nueva"
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "Nueva transcripción de archivos"
# automatic translation
-#: buzz/widgets/main_window_toolbar.py:46
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "Nueva transcripción de URL"
+
+# automatic translation
+#: buzz/widgets/main_window_toolbar.py
msgid "Open Transcript"
msgstr "Abrir transcripción"
# automatic translation
-#: buzz/widgets/main_window_toolbar.py:52 buzz/settings/shortcut.py:27
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
msgid "Cancel Transcription"
msgstr "Cancelar transcripción"
# automatic translation
-#: buzz/widgets/main_window_toolbar.py:60 buzz/widgets/main_window.py:223
-#: buzz/settings/shortcut.py:26
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
msgid "Clear History"
msgstr "Vaciar historial"
-#: buzz/widgets/transcription_tasks_table_widget.py:64
-msgid "In Progress"
-msgstr ""
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "Actualización disponible"
-#: buzz/widgets/transcription_tasks_table_widget.py:67
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "In Progress"
+msgstr "En Progreso"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Completed"
msgstr "Completado"
-#: buzz/widgets/transcription_tasks_table_widget.py:74
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Failed"
-msgstr ""
+msgstr "Fallido"
-#: buzz/widgets/transcription_tasks_table_widget.py:77
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Canceled"
msgstr "Cancelado"
-#: buzz/widgets/transcription_tasks_table_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Queued"
msgstr "En cola"
# automatic translation
-#: buzz/widgets/transcription_tasks_table_widget.py:86
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "File Name / URL"
-msgstr "Nombre de archivo"
+msgstr "Nombre de archivo / URL"
# automatic translation
-#: buzz/widgets/transcription_tasks_table_widget.py:98
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Model"
-msgstr "Modelo:"
+msgstr "Modelo"
# automatic translation
-#: buzz/widgets/transcription_tasks_table_widget.py:107
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Task"
-msgstr "Tarea:"
+msgstr "Tarea"
-#: buzz/widgets/transcription_tasks_table_widget.py:116
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Status"
msgstr "Estado"
-#: buzz/widgets/transcription_tasks_table_widget.py:124
-msgid "Date Added"
-msgstr ""
-
-#: buzz/widgets/transcription_tasks_table_widget.py:135
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Date Completed"
-msgstr "Completado"
+msgstr "Fecha de finalización"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "Fecha de adición"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "Notas"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "Restablecer orden de columnas"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "Reiniciar transcripción"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "Renombrar"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "Añadir/Editar notas"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "Renombrar transcripción"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "Introducir nuevo nombre:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "Introduzca algunas notas relevantes para esta transcripción:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "No se puede reiniciar"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr "Solo se pueden reiniciar las transcripciones fallidas o canceladas."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "No se pudo reiniciar la transcripción: {}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+"No se pudo reiniciar la transcripción: modelo no disponible y no se pudo "
+"descargar."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr ""
+"No se pudo reiniciar la transcripción: no se encontró el trabajador del "
+"transcriptor."
# automatic translation
-#: buzz/widgets/recording_transcriber_widget.py:79
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Live Recording"
msgstr "Grabación en vivo"
# automatic translation
-#: buzz/widgets/recording_transcriber_widget.py:144
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Click Record to begin..."
msgstr "Pulse en Grabar para comenzar..."
-#: buzz/widgets/recording_transcriber_widget.py:147
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Waiting for AI translation..."
-msgstr ""
+msgstr "A la espera de la traducción de la IA..."
# automatic translation
-#: buzz/widgets/recording_transcriber_widget.py:159
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Microphone:"
msgstr "Micrófono:"
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "Mostrar en nueva ventana"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "Tamaño del texto:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "Tema"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "Claro"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "Oscuro"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "Personalizado"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "Color del texto"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "Color de fondo"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "Pantalla completa"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "Copiar"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "Copiar transcripción al portapapeles"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "¡Nada que copiar!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "Copia fallida"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "¡Copiado!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "Seleccionar color del texto"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "Seleccionar color de fondo"
+
# automatic translation
-#: buzz/widgets/recording_transcriber_widget.py:523
+#: buzz/widgets/recording_transcriber_widget.py
msgid "An error occurred while starting a new recording:"
msgstr "Se produjo un error al iniciar una grabación nueva:"
# automatic translation
-#: buzz/widgets/recording_transcriber_widget.py:527
+#: buzz/widgets/recording_transcriber_widget.py
msgid ""
"Please check your audio devices or check the application logs for more "
"information."
@@ -445,146 +775,421 @@ msgstr ""
"Compruebe sus dispositivos de audio o consulte los registros de la "
"aplicación para obtener más información."
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "¡Hay una nueva versión de Buzz disponible!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "Versión actual:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "Nueva versión:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "Notas de la versión:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "Descargar e instalar"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "No hay URL de descarga disponible para su plataforma."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "Descargando archivo {} de {}..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "Descargando archivo {} de {} ({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "Descarga fallida"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "Error al descargar la actualización: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "No se pudo guardar el instalador: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "¡Descarga completa!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "No se pudo ejecutar el instalador: {}"
+
# automatic translation
-#: buzz/widgets/about_dialog.py:80
+#: buzz/widgets/about_dialog.py
msgid "Check for updates"
msgstr "Buscar actualizaciones"
-# automatic translation
-#: buzz/widgets/about_dialog.py:109
-msgid "You're up to date!"
-msgstr "Está al día."
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "Mostrar registros"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:93
+# automatic translation
+#: buzz/widgets/about_dialog.py
+msgid "You're up to date!"
+msgstr "¡Estás al día!"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "Volumen promedio"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "Cola"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "Start"
msgstr "Inicio"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:94
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "End"
msgstr "Fin"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:95
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:34
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:30
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text"
msgstr "Texto"
# automatic translation
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:96
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:40
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:31
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:64
-#, fuzzy
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Translation"
-msgstr "Transcripción nueva"
+msgstr "Traducción"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:26
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "View"
-msgstr ""
+msgstr "Ver"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:46
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "Timestamps"
-msgstr ""
+msgstr "Marcas de tiempo"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:156
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Export"
-msgstr ""
+msgstr "Exportar"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:170
-#: buzz/transcriber/transcriber.py:24
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Translate"
-msgstr ""
+msgstr "Traducir"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:180
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Resize"
-msgstr ""
+msgstr "Cambiar el tamaño"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:279
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "Identificar hablantes"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "Buscar"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "Mostrar/Ocultar barra de búsqueda (Ctrl+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "Encontrar:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "Introducir texto para encontrar..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "Coincidencia anterior (Mayús+Intro)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "Siguiente coincidencia (Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "Limpiar"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "Controles de reproducción:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "Segmento de bucle"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr ""
+"Activar/desactivar la reproducción en bucle al hacer clic en segmentos de la "
+"transcripción"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "Seguir audio"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+"Activa/desactiva el seguimiento de la posición actual del audio en la "
+"transcripción. Cuando está activado, se desplaza automáticamente al texto "
+"actual."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "Desplácese hasta Actual"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "Desplazarse hasta el texto hablado actualmente"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "1 de 100+ coincidencias"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "1 de "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr " coincidencias"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "No se encontraron coincidencias"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr " de 100+ coincidencias"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr " de "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "API Key Required"
-msgstr ""
+msgstr "Clave de API requerida"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:280
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Please enter OpenAI API Key in preferences"
-msgstr ""
+msgstr "Ingrese la clave API de OpenAI en las preferencias"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:297
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "Extender tiempo final"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "Extender finales hasta (segundos)"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "Extender finales"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "Opciones de cambio de tamaño"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Desired subtitle length"
-msgstr ""
+msgstr "Longitud deseada de los subtítulos"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:298
-msgid "Enter target characters per subtitle:"
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
msgstr ""
+"Disponible solo si los tiempos a nivel de palabra estaban desactivados "
+"durante la transcripción"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "Opciones de fusión"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "Fusión por hueco"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "Dividido por puntuación"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "Dividido por la longitud máxima"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "Fusión"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr ""
+"Disponible solo si los tiempos a nivel de palabra estaban activados durante "
+"la transcripción"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr ""
+"La identificación de hablantes no está disponible: no se pudieron cargar las "
+"bibliotecas requeridas."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 Recopilando transcripciones"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 Cargando audio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 Cargando modelo de alineación"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr "3/8 Cargando modelo de alineación (reintentando con caché...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+"No se pudo cargar el modelo de alineación. Por favor, compruebe su conexión "
+"a internet e inténtelo de nuevo."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 Procesando audio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 Preparando transcripciones"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 Identificando hablantes"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 Asignando hablantes a transcripciones"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 Identificación completada"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 Error al identificar hablantes"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "Paso 1: Identificar hablantes"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "Identificar"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "Listo para identificar hablantes"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "Archivo de audio no encontrado"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "Paso 2: Nombrar hablantes"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "Reproducir muestra"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "Fusionar frases del hablante"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "Guardar"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "Cancelando..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "Cancelado"
# automatic translation
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:78
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Save File"
msgstr "Guardar archivo"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:80
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text files"
msgstr "Archivos de texto"
-#: buzz/widgets/snap_notice.py:9
-msgid "Snap permission notice"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:13
-msgid ""
-"Detected missing permissions, please check that snap permissions have been "
-"granted"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:16
-msgid ""
-"To enable necessary permissions run the following commands in the terminal"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:30
-msgid "Close"
-msgstr ""
-
-#: buzz/widgets/model_download_progress_dialog.py:36
-#, fuzzy
+#: buzz/widgets/model_download_progress_dialog.py
msgid "Downloading model"
-msgstr "Descargado"
+msgstr "Descargando modelo"
-#: buzz/widgets/model_download_progress_dialog.py:37
+#: buzz/widgets/model_download_progress_dialog.py
msgid "remaining"
-msgstr ""
+msgstr "restantes"
# automatic translation
-#: buzz/widgets/menu_bar.py:38
-#, fuzzy
+#: buzz/widgets/menu_bar.py
msgid "Import File..."
-msgstr "Importar archivo multimedia..."
+msgstr "Importar archivo..."
# automatic translation
-#: buzz/widgets/menu_bar.py:41
-#, fuzzy
+#: buzz/widgets/menu_bar.py
msgid "Import URL..."
-msgstr "Importar archivo multimedia..."
-
-#: buzz/widgets/menu_bar.py:44
-msgid "About"
-msgstr ""
+msgstr "Importar URL..."
# automatic translation
-#: buzz/widgets/menu_bar.py:48
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "Importar carpeta..."
+
+#: buzz/widgets/menu_bar.py
+msgid "About"
+msgstr "Acerca de"
+
+# automatic translation
+#: buzz/widgets/menu_bar.py
msgid "Preferences..."
msgstr "Preferencias..."
# automatic translation
-#: buzz/widgets/menu_bar.py:51 buzz/widgets/menu_bar.py:61
+#: buzz/widgets/menu_bar.py
msgid "Help"
msgstr "Ayuda"
# automatic translation
-#: buzz/widgets/menu_bar.py:57
+#: buzz/widgets/menu_bar.py
msgid "File"
msgstr "Archivo"
# automatic translation
-#: buzz/widgets/main_window.py:227
+#: buzz/widgets/main_window.py
msgid ""
"Are you sure you want to delete the selected transcription(s)? This action "
"cannot be undone."
@@ -593,69 +1198,544 @@ msgstr ""
"no se puede deshacer."
# automatic translation
-#: buzz/widgets/main_window.py:255
+#: buzz/widgets/main_window.py
msgid "Select audio file"
msgstr "Seleccionar archivo de audio"
-#: buzz/widgets/main_window.py:291
+# automatic translation
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "Seleccione la carpeta de entrada"
+
+#: buzz/widgets/main_window.py
msgid "Unable to save OpenAI API key to keyring"
+msgstr "No se puede guardar la clave de la API de OpenAI en el llavero"
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
msgstr ""
+"El servidor Whisper no se pudo iniciar. Consulta los registros para obtener "
+"más detalles."
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"El servidor Whisper no se pudo iniciar debido a la memoria insuficiente. "
+"Vuelva a intentarlo con un modelo más pequeño. Para forzar el modo de CPU, "
+"use la variable de entorno BUZZ_FORCE_CPU=TRUE."
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "Traducir al Inglés"
# automatic translation
-#: buzz/transcriber/transcriber.py:25
-#, fuzzy
+#: buzz/transcriber/transcriber.py
msgid "Transcribe"
-msgstr "Abrir transcripción"
+msgstr "Transcribir"
-#: buzz/model_loader.py:532
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "China"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "Ruso"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "Coreano"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "Francés"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "Portugués"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "Turco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "Árabe"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "Sueco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "Indones"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "Hindi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "Finlandés"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "Vietnamita"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "Hebreo"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "Griego"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "Malayo"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "República Checa"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "Rumano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "Húngaro"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "Tamil"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "Noruego"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "Tailandés"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "Urdu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "Croata"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "Búlgaro"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "Lituano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "Latin"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "Maori"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "Malayo"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "Galés"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "Eslovaco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "Telugu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "Persa"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "Bengalí"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "Serbian"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "Azerbaiyano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "Esloveno"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "Kannada"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "Estonio"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "Macedonio"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "Breton"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "Vasco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "Islandés"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "Ermeni"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "Nepalí"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "Mongol"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "Bosnio"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "Kazako"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "Arnavut"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "Suahili"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "Gallego"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "Maratí"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "Punjabi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "Cingalés"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "Khmer"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "Shona"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "Yoruba"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "Somalí"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "Africaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "Occitano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "Georgiano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "Belorusia"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "Tajik"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "Gujarati"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "Amharca"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "Yiddish"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "República Popular Democrática de Laos"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "Uzbeko"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "Faroe"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "Haitian Creole"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "Pastún"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "Turcomano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "Nynorsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "Maltés"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "Sánscrito"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "Luxemburgo"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "Tibetano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "Tagalog"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "Madagascar"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "Asamés"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "Tátaro"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "Hawaiano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "Lingala"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "Hausa"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "Baskir"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "Javanés"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "Sundanés"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "Cantonés"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
msgid "A connection error occurred"
-msgstr ""
+msgstr "Se ha producido un error de conexión"
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "Iniciando Whisper.cpp..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "Iniciando transcripción..."
# automatic translation
-#: buzz/settings/shortcut.py:17
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "Open Record Window"
-msgstr "Grabación en vivo"
+msgstr "Abrir ventana de grabación"
# automatic translation
-#: buzz/settings/shortcut.py:18
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "Import File"
-msgstr "Importar archivo multimedia..."
+msgstr "Importar archivo"
-#: buzz/settings/shortcut.py:20
+#: buzz/settings/shortcut.py
msgid "Open Preferences Window"
-msgstr ""
+msgstr "Abrir ventana de preferencias"
# automatic translation
-#: buzz/settings/shortcut.py:22
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Text"
-msgstr "Transcripción nueva"
+msgstr "Ver el texto de la transcripción"
# automatic translation
-#: buzz/settings/shortcut.py:23
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Translation"
-msgstr "Transcripción nueva"
+msgstr "Ver la traducción de la transcripción"
# automatic translation
-#: buzz/settings/shortcut.py:24
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Timestamps"
-msgstr "Transcripción nueva"
+msgstr "Ver marcas de tiempo de la transcripción"
-#: buzz/settings/recording_transcriber_mode.py:5
+# automatic translation
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "Buscar transcripción"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "Ir al siguiente resultado de búsqueda de transcripción"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "Ir al resultado de búsqueda de transcripción anterior"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "Desplazarse al texto actual"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "Reproducir/Pausar audio"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "Reproducir segmento actual"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "Alternar controles de reproducción"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "Disminuir el tiempo de inicio del segmento"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "Aumentar el tiempo de inicio del segmento"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "Disminuir el tiempo de finalización del segmento"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "Aumentar el tiempo de finalización del segmento"
+
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append below"
-msgstr ""
+msgstr "Añadir a continuación"
-#: buzz/settings/recording_transcriber_mode.py:6
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append above"
-msgstr ""
+msgstr "Añadir arriba"
-#: buzz/settings/recording_transcriber_mode.py:7
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append and correct"
+msgstr "Añadir y corregir"
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
msgstr ""
+"¡Extracción de voz fallida! Compruebe su conexión a internet — es posible "
+"que sea necesario descargar un modelo."
+
+# automatic translation
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "Separados por comas, p. ej., «0.0, 0.2, 0.4, 0.6, 0.8, 1.0»"
+
+# automatic translation
+#~ msgid "Temperature:"
+#~ msgstr "Temperatura:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr ""
+#~ "Por favor, traduzca cada texto que se le envíe del inglés al español."
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "¡Error de traducción, consulte los registros!"
+
+#~ msgid "Snap permission notice"
+#~ msgstr "Aviso de permiso Snap"
+
+#~ msgid ""
+#~ "Detected missing permissions, please check that snap permissions have "
+#~ "been granted"
+#~ msgstr ""
+#~ "Se ha detectado que faltan permisos, compruebe que se han concedido los "
+#~ "permisos snap"
+
+#~ msgid ""
+#~ "To enable necessary permissions run the following commands in the terminal"
+#~ msgstr ""
+#~ "Para habilitar los permisos necesarios ejecute los siguientes comandos en "
+#~ "el terminal"
+
+#~ msgid "Close"
+#~ msgstr "Cerrar"
+
+#~ msgid "Enter instructions for AI on how to translate..."
+#~ msgstr "Introduzca instrucciones para la IA sobre cómo traducir..."
#~ msgid "ID"
#~ msgstr "Id."
diff --git a/buzz/locale/it_IT/LC_MESSAGES/buzz.po b/buzz/locale/it_IT/LC_MESSAGES/buzz.po
index a4c8cc31..2c2ea56e 100644
--- a/buzz/locale/it_IT/LC_MESSAGES/buzz.po
+++ b/buzz/locale/it_IT/LC_MESSAGES/buzz.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: buzz\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-11-03 08:32+0200\n"
-"PO-Revision-Date: 2024-11-03 11:22+0100\n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
+"PO-Revision-Date: 2026-01-25 21:42+0200\n"
"Language-Team: (Italiano) Albano Battistella \n"
"Language: it_IT\n"
"MIME-Version: 1.0\n"
@@ -16,92 +16,212 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.3\n"
-#: buzz/widgets/import_url_dialog.py:19 buzz/settings/shortcut.py:19
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
msgid "Import URL"
msgstr "Importa URL"
-#: buzz/widgets/import_url_dialog.py:22
+#: buzz/widgets/import_url_dialog.py
msgid "https://example.com/audio.mp3"
msgstr "https://esempio.com/audio.mp3"
-#: buzz/widgets/import_url_dialog.py:28
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:69
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:245
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:97
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:295
-#: buzz/widgets/main_window.py:234
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
msgid "Ok"
msgstr "Ok"
-#: buzz/widgets/import_url_dialog.py:29
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:70
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:246
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:296
-#: buzz/widgets/model_download_progress_dialog.py:29
-#: buzz/widgets/main_window.py:235
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
msgid "Cancel"
msgstr "Annulla"
-#: buzz/widgets/import_url_dialog.py:34
+#: buzz/widgets/import_url_dialog.py
msgid "URL:"
msgstr "URL:"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "Invalid URL"
-msgstr "URL non valido"
+msgstr "URL non valido"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "The URL you entered is invalid."
msgstr "L'URL inserito non è valido."
-#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py:29
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "Presentazione con trascrizione in diretta"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
msgid "Reset to Defaults"
msgstr "Ripristina impostazioni predefinite"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:52
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "Inglese"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "Catalano"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "Danese"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "Olandese"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "Tedesco"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "Spagnolo"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "Italiano"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "Giapponese"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "Lettone"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "Polacco"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "Portoghese (Brasiliano)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "Ucraino"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "Cinese (semplificato)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "Cinese (tradizionale)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "Riavvio richiesto!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "Lingua UI:"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Font Size"
msgstr "Dimensione del carattere"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:61
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Test"
msgstr "Test"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:67
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API key"
msgstr "Chiave API OpenAI"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:80
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI base url"
msgstr "URL di base di OpenAI"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:89
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "Modello API OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Default export file name"
msgstr "Nome file di esportazione predefinito"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Enable live recording transcription export"
msgstr "Abilita l'esportazione della trascrizione della registrazione live"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:101
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:47
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:50
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Browse"
msgstr "Sfoglia"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:119
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Export folder"
msgstr "Esporta cartella"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:130
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Live recording mode"
msgstr "Modalità di registrazione in diretta"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:156
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:162
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
+msgstr ""
+"Nota: le impostazioni di esportazione della registrazione live verranno "
+"spostate nelle Impostazioni avanzate nella schermata di Registrazione live "
+"in una versione futura."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr ""
+"Utilizzare la quantizzazione a 8 bit per ridurre l'utilizzo della memoria"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"Si applica ai modelli Huggingface e Faster Whisper. Riduce l'utilizzo della "
+"memoria GPU ma potrebbe ridurre leggermente la qualità della trascrizione."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "Ridurre la RAM della GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "Utilizza solo la CPU e disattiva l'accelerazione GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+"Imposta questa opzione se i modelli più grandi non si adattano alla memoria "
+"della tua GPU e Buzz si blocca"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "Disabilita GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API Key Test"
msgstr "Test della chiave API OpenAI"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:157
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"Your API key is valid. Buzz will use this key to perform Whisper API "
"transcriptions and AI translations."
@@ -109,300 +229,510 @@ msgstr ""
"La tua chiave API è valida. Buzz utilizzerà questa chiave per eseguire le "
"trascrizioni API Whisper e le traduzioni AI."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:172
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Invalid API key"
msgstr "Chiave API non valida"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:174
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
-"API supports only base64 characters (A-Za-z0-9+/=). Other characters in API "
-"key may cause errors."
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
msgstr ""
-"L'API supporta solo caratteri base64 (A-Za-z0-9+/=). Altri caratteri nella chiave API "
-"potrebbero causare errori."
+"L'API supporta solo caratteri base64 (A-Za-z0-9+/=). Altri caratteri nella "
+"chiave API potrebbero causare errori."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:192
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Select Export Folder"
msgstr "Seleziona la cartella di esportazione"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:244
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"OpenAI API returned invalid response. Please check the API url or your key. "
"Transcription and translation may still work if the API does not support key "
"validation."
msgstr ""
-"L'API OpenAI ha restituito una risposta non valida. Controlla l'URL dell'API o la tua chiave."
-"La trascrizione e la traduzione potrebbero comunque funzionare se l'API non supporta la convalida della chiave."
+"L'API OpenAI ha restituito una risposta non valida. Controlla l'URL dell'API "
+"o la tua chiave.La trascrizione e la traduzione potrebbero comunque "
+"funzionare se l'API non supporta la convalida della chiave."
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:42
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Enable folder watch"
msgstr "Abilita controllo cartelle"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "Elimina file elaborati"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Input folder"
msgstr "Cartella di input"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Output folder"
msgstr "Cartella di output"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:105
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Input Folder"
msgstr "Seleziona cartella di input"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:114
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Output Folder"
msgstr "Seleziona cartella di output"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:43
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Preferences"
msgstr "Preferenze"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:50
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "General"
msgstr "Generale"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:53
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Models"
msgstr "Modelli"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:57
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Shortcuts"
msgstr "Scorciatoie"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:63
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Folder Watch"
msgstr "Guarda cartella"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:70
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Group"
msgstr "Gruppo"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:82
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Huggingface ID of a Faster whisper model"
msgstr "ID Huggingface di un modello Whisper più veloce"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download"
msgstr "Download"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:99
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Show file location"
msgstr "Mostra la posizione del file"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:107
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete"
msgstr "Elimina"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:138
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Downloaded"
msgstr "Scaricato"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:143
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Available for Download"
msgstr "Disponibile per il download"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:164
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download link to Whisper.cpp ggml model file"
msgstr "Link per scaricare il file modello ggml Whisper.cpp"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:239
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete Model"
msgstr "Elimina modello"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:240
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Are you sure you want to delete the selected model?"
msgstr "Sei sicuro di voler eliminare il modello selezionato?"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:267
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download failed"
msgstr "Download non riuscito"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:269
-#: buzz/widgets/main_window.py:291 buzz/model_loader.py:503
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
msgid "Error"
msgstr "Errore"
-#: buzz/widgets/record_button.py:10 buzz/widgets/record_button.py:17
-#: buzz/widgets/main_window_toolbar.py:35
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
msgid "Record"
msgstr "Registra"
-#: buzz/widgets/record_button.py:21
+#: buzz/widgets/record_button.py
msgid "Stop"
msgstr "Arresta"
-#: buzz/widgets/transcriber/languages_combo_box.py:35
-#: buzz/transcriber/transcriber.py:159
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
msgid "Detect Language"
msgstr "Rileva la lingua"
-#: buzz/widgets/transcriber/file_transcriber_widget.py:79
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "ad es., eng, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"Inserisci un codice lingua ISO 639-3 (3 lettere).\n"
+"Esempi: eng (inglese), fra (francese), deu (tedesco),\n"
+"spa (spagnolo), lav (lettone)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
msgid "Run"
msgstr "Avvia"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:92
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Model:"
msgstr "Modello:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:104
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
msgid "First time use of a model may take up to several minutest to load."
msgstr ""
+"Il caricamento di un modello al primo utilizzo potrebbe richiedere diversi "
+"minuti."
-#: buzz/widgets/transcriber/transcription_options_group_box.py:113
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Api Key:"
msgstr "Chiave API:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:114
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Task:"
msgstr "Compito:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:115
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Language:"
msgstr "Lingua:"
-#: buzz/widgets/transcriber/initial_prompt_text_edit.py:10
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
msgid "Enter prompt..."
msgstr "Inserisci richiesta..."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:33
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Advanced Settings"
msgstr "Impostazion avanzate"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:37
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Speech recognition settings"
msgstr "Impostazioni di riconoscimento vocale"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:46
-msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-msgstr "Separate da virgola, esempio: \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:55
-msgid "Temperature:"
-msgstr "Temperatura:"
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:66
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Initial Prompt:"
msgstr "Domanda iniziale:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:68
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Translation settings"
msgstr "Impostazioni di traduzione"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:72
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Enable AI translation"
msgstr "Abilita la traduzione AI"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:84
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "AI model:"
msgstr "Modello AI:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:88
-msgid "Enter instructions for AI on how to translate..."
-msgstr "Inserisci le istruzioni per l'IA su come tradurre..."
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
+msgstr ""
+"Si prega di tradurre ogni testo inviato dall'inglese allo spagnolo. La "
+"traduzione verrà utilizzata in un sistema automatizzato, quindi non "
+"aggiungere commenti o note, solo la traduzione."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:92
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Instructions for AI:"
msgstr "Istruzioni per l'AI:"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:42
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "Impostazioni di registrazione"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "Soglia del silenzio:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "Modalità di registrazione in diretta:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "Separatore di riga:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "Passo di trascrizione:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "Nascondi non confermato"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "Abilita l'esportazione della registrazione live"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "Cartella di esportazione:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "Nome del file di esportazione:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "File di testo (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "Tipo di file di esportazione:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"Limita le voci di esportazione\n"
+"(0 = esporta tutto):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Word-level timings"
msgstr "Tempistiche a livello di parola"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:66
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "Estrai il parlato"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Export:"
msgstr "Esporta:"
-#: buzz/widgets/transcriber/hugging_face_search_line_edit.py:37
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
msgid "Huggingface ID of a model"
msgstr "ID Huggingface di un modello"
-#: buzz/widgets/transcriber/advanced_settings_button.py:9
+#: buzz/widgets/transcriber/advanced_settings_button.py
msgid "Advanced..."
msgstr "Avanzate..."
-#: buzz/widgets/main_window_toolbar.py:39
-msgid "New Transcription"
-msgstr "Nuova trascrizione"
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "Nuova trascrizione del file"
-#: buzz/widgets/main_window_toolbar.py:46
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "Nuova trascrizione URL"
+
+#: buzz/widgets/main_window_toolbar.py
msgid "Open Transcript"
msgstr "Apri trascrizione"
-#: buzz/widgets/main_window_toolbar.py:52 buzz/settings/shortcut.py:27
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
msgid "Cancel Transcription"
msgstr "Annulla trascrizione"
-#: buzz/widgets/main_window_toolbar.py:60 buzz/widgets/main_window.py:223
-#: buzz/settings/shortcut.py:26
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
msgid "Clear History"
msgstr "Elimina la cronologia"
-#: buzz/widgets/transcription_tasks_table_widget.py:64
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "Aggiornamento Disponibile"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "In Progress"
msgstr "In corso"
-#: buzz/widgets/transcription_tasks_table_widget.py:67
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Completed"
msgstr "Completato"
-#: buzz/widgets/transcription_tasks_table_widget.py:74
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Failed"
msgstr "Non riuscito"
-#: buzz/widgets/transcription_tasks_table_widget.py:77
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Canceled"
msgstr "Annullato"
-#: buzz/widgets/transcription_tasks_table_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Queued"
msgstr "In coda"
-#: buzz/widgets/transcription_tasks_table_widget.py:86
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "File Name / URL"
msgstr "Nome file / URL"
-#: buzz/widgets/transcription_tasks_table_widget.py:98
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Model"
msgstr "Modello"
-#: buzz/widgets/transcription_tasks_table_widget.py:107
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Task"
msgstr "Compito"
-#: buzz/widgets/transcription_tasks_table_widget.py:116
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Status"
msgstr "Stato"
-#: buzz/widgets/transcription_tasks_table_widget.py:124
-msgid "Date Added"
-msgstr "Data aggiunta"
-
-#: buzz/widgets/transcription_tasks_table_widget.py:135
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Date Completed"
msgstr "Data completata"
-#: buzz/widgets/recording_transcriber_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "Data aggiunta"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "Note"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "Ripristina ordine colonne"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "Riavvia trascrizione"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "Rinomina"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "Aggiungi/modifica note"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "Rinomina trascrizione"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "Inserisci nuovo nome:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "Inserisci alcune note rilevanti per questa trascrizione:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "Impossibile riavviare"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr "È possibile riavviare solo le trascrizioni non riuscite o annullate."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "Impossibile riavviare la trascrizione: {}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+"Impossibile riavviare la trascrizione: il modello non è disponibile e non "
+"può essere scaricato."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr "Impossibile riavviare la trascrizione: trascrittore non trovato."
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Live Recording"
msgstr "Registrazione in diretta"
-#: buzz/widgets/recording_transcriber_widget.py:144
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Click Record to begin..."
msgstr "Fai clic su Registra per iniziare..."
-#: buzz/widgets/recording_transcriber_widget.py:147
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Waiting for AI translation..."
msgstr "In attesa della traduzione AI..."
-#: buzz/widgets/recording_transcriber_widget.py:159
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Microphone:"
msgstr "Microfono:"
-#: buzz/widgets/recording_transcriber_widget.py:523
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "Mostra in una nuova finestra"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "Dimensione testo:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "Tema"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "Chiaro"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "Scuro"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "Personalizzato"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "Colore del testo"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "Colore dello sfondo"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "Schermo intero"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "Copia"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "Copia la trascrizione negli appunti"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "Nessun testo da copiare!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "Copia non riuscita"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "Copiato!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "Seleziona il colore del testo"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "Seleziona il colore di sfondo"
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "An error occurred while starting a new recording:"
msgstr "Si è verificato un errore durante l'avvio della nuova registrazione:"
-#: buzz/widgets/recording_transcriber_widget.py:527
+#: buzz/widgets/recording_transcriber_widget.py
msgid ""
"Please check your audio devices or check the application logs for more "
"information."
@@ -410,136 +740,410 @@ msgstr ""
"Controlla i tuoi dispositivi audio o i registri dell'applicazione per "
"maggiori informazioni."
-#: buzz/widgets/about_dialog.py:80
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "È disponibile una nuova versione di Buzz!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "Versione attuale:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "Nuova versione:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "Note di rilascio:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "Scarica e installa"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "Nessun URL di download disponibile per la tua piattaforma."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "Download del file {} di {}..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "Download del file {} di {} ({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "Download fallito"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "Impossibile scaricare l'aggiornamento: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "Impossibile salvare il programma di installazione: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "Download completato!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "Impossibile eseguire il programma di installazione: {}"
+
+#: buzz/widgets/about_dialog.py
msgid "Check for updates"
msgstr "Controlla gli aggiornamenti"
-#: buzz/widgets/about_dialog.py:109
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "Mostra log"
+
+#: buzz/widgets/about_dialog.py
msgid "You're up to date!"
msgstr "Il programma è aggiornato!"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:93
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "Volume medio"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "Coda"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "Start"
msgstr "Inizio"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:94
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "End"
msgstr "Fine"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:95
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:34
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:30
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text"
msgstr "Testo"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:96
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:40
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:31
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:64
-#, fuzzy
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Translation"
-msgstr "Nuova trascrizione"
+msgstr "Traduzione"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:26
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "View"
msgstr "Visualizza"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:46
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "Timestamps"
msgstr "Timestamp"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:156
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Export"
msgstr "Esporta"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:170
-#: buzz/transcriber/transcriber.py:24
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Translate"
msgstr "Tradurre"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:180
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Resize"
msgstr "Ridimensionare"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:279
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "Identificare i relatori"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "Trova"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "Mostra/Nascondi barra di ricerca (Ctrl+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "Trova:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "Inserisci il testo per trovare..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "Corrispondenza precedente (Maiusc+Invio)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "Prossima corrispondenza (Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "Elimina"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "Controlli di riproduzione:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "Ciclo di segmento"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr ""
+"Abilita/disabilita il loop quando si fa clic sui segmenti della trascrizione"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "Segui Audio"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+"Abilita/disabilita la lettura della posizione audio corrente nella "
+"trascrizione. Quando abilitato, scorre automaticamente fino al testo "
+"corrente."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "Scorri fino al Corrente"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "Scorrere fino al testo attualmente pronunciato"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "1 di 100+ corrispondenze"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "1 di"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr "corrispondenze"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "Nessuna corrispondenza trovata"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr " di oltre 100 corrispondenze"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr " di "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "API Key Required"
msgstr "Chiave API richiesta"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:280
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Please enter OpenAI API Key in preferences"
msgstr "Inserisci la chiave API OpenAI nelle preferenze"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:297
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "Estendi l'orario di fine"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "Estendi le terminazioni fino a (secondi)"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "Estendere i finali"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "Opzioni di ridimensionamento"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Desired subtitle length"
msgstr "Lunghezza desiderata dei sottotitoli"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:298
-msgid "Enter target characters per subtitle:"
-msgstr "Inserisci i caratteri di destinazione per sottotitolo:"
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
+msgstr ""
+"Disponibile solo se i tempi a livello di parola sono stati disabilitati "
+"durante la trascrizione"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:78
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "Opzioni di unione"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "Unito per spazio"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "Diviso per punteggiatura"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "Diviso per lunghezza massima"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "Unione"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr ""
+"Disponibile solo se i tempi a livello di parola sono stati abilitati durante "
+"la trascrizione"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr ""
+"L'identificazione del parlante non è disponibile: impossibile caricare le "
+"librerie richieste."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 Raccolta delle trascrizioni"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 Caricamento audio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 Modello di allineamento del carico"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr ""
+"3/8 Caricamento del modello di allineamento (nuovo tentativo con la cache...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+"Impossibile caricare il modello di allineamento. Controlla la tua "
+"connessione Internet e riprova."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 Elaborazione audio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 Preparazione delle trascrizioni"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 Identificazione dei parlanti"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 Mappatura dei parlanti sulle trascrizioni"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 Identificazione effettuata"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 Errore nell'identificazione dei parlanti"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "Fase 1: identificare i parlanti"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "Identificare"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "Pronto a identificare i parlanti"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "File audio non trovato"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "Fase 2: nomi dei parlanti"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "Ascolta il campione"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "Unisci le frasi del parlante"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "Salva"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "Annullamento in corso..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "Annullato"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Save File"
msgstr "Salva file"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:80
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text files"
msgstr "File di testo"
-#: buzz/widgets/snap_notice.py:9
-msgid "Snap permission notice"
-msgstr "Avviso di autorizzazione Snap"
-
-#: buzz/widgets/snap_notice.py:13
-msgid ""
-"Detected missing permissions, please check that snap permissions have been "
-"granted"
-msgstr ""
-"Rilevate autorizzazioni mancanti, verificare che le autorizzazioni snap siano state "
-"concesse"
-
-#: buzz/widgets/snap_notice.py:16
-msgid ""
-"To enable necessary permissions run the following commands in the terminal"
-msgstr ""
-"Per abilitare le autorizzazioni necessarie, eseguire i seguenti comandi nel terminale"
-
-#: buzz/widgets/snap_notice.py:30
-msgid "Close"
-msgstr "Chiudi"
-
-#: buzz/widgets/model_download_progress_dialog.py:36
+#: buzz/widgets/model_download_progress_dialog.py
msgid "Downloading model"
msgstr "Download del modello"
-#: buzz/widgets/model_download_progress_dialog.py:37
+#: buzz/widgets/model_download_progress_dialog.py
msgid "remaining"
msgstr "rimanente"
-#: buzz/widgets/menu_bar.py:38
+#: buzz/widgets/menu_bar.py
msgid "Import File..."
msgstr "Importa file.."
-#: buzz/widgets/menu_bar.py:41
+#: buzz/widgets/menu_bar.py
msgid "Import URL..."
msgstr "Importa URL..."
-#: buzz/widgets/menu_bar.py:44
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "Importa cartella..."
+
+#: buzz/widgets/menu_bar.py
msgid "About"
msgstr "Informazioni"
-#: buzz/widgets/menu_bar.py:48
+#: buzz/widgets/menu_bar.py
msgid "Preferences..."
msgstr "Preferenze..."
-#: buzz/widgets/menu_bar.py:51 buzz/widgets/menu_bar.py:61
+#: buzz/widgets/menu_bar.py
msgid "Help"
msgstr "Aiuto"
-#: buzz/widgets/menu_bar.py:57
+#: buzz/widgets/menu_bar.py
msgid "File"
msgstr "File"
-#: buzz/widgets/main_window.py:227
+#: buzz/widgets/main_window.py
msgid ""
"Are you sure you want to delete the selected transcription(s)? This action "
"cannot be undone."
@@ -547,58 +1151,538 @@ msgstr ""
"Sei certo di voler eliminare le trascrizioni selezionate? Questa azione non "
"può essere annullata."
-#: buzz/widgets/main_window.py:255
+#: buzz/widgets/main_window.py
msgid "Select audio file"
msgstr "Seleziona file audio"
-#: buzz/widgets/main_window.py:291
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "Seleziona cartella di input"
+
+#: buzz/widgets/main_window.py
msgid "Unable to save OpenAI API key to keyring"
msgstr "Impossibile salvare la chiave API OpenAI nel portachiavi"
-#: buzz/transcriber/transcriber.py:25
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr ""
+"Impossibile avviare il server Whisper. Controllare i log per i dettagli."
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"Impossibile avviare il server Whisper a causa di memoria insufficiente. "
+"Riprovare con un modello più piccolo. Per forzare la modalità CPU, "
+"utilizzare la variabile d'ambiente BUZZ_FORCE_CPU=TRUE"
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "Traduci in inglese"
+
+#: buzz/transcriber/transcriber.py
msgid "Transcribe"
msgstr "Trascrivere"
-#: buzz/model_loader.py:532
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "Cinese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "Russo"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "Coreano"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "Francese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "Portoghese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "Turco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "Arabo"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "Svedese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "Indonesiano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "Hindi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "Finlandese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "Vietnamita"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "Ebraico"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "Greco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "Malese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "Ceco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "Rumeno"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "Ungherese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "Tamil"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "Norvegese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "Tailandese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "Urdu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "Croato"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "Bulgaro"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "Lituano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "Latino"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "Maori"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "Malayalam"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "Gallese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "Slovacco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "Telugu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "Persiano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "Bengalese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "Serbo"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "Azerbaijani"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "Sloveno"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "Kannada"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "Estone"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "Macedone"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "Bretone"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "Basco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "Islandese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "Armeno"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "Nepalese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "Mongola"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "Bosniaco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "kazako"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "Albanese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "Swahili"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "Galiziano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "Marathi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "Punjabi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "Singalese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "Khmer"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "Shona"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "Yoruba"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "Somalo"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "Afrikaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "Occitano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "Georgiano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "Biellorusso"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "Tagiko"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "Gujarati"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "Amarico"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "Yiddish"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "Lao"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "Uzbeko"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "Faroese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "Creolo haitiano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "Pashtu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "Turkmen"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "Nynorsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "Maltese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "Sanscrito"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "Lussemburghese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "Birmano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "Tibetano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "Tagalog"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "Malgascio"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "Assamese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "Tartaro"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "Hawaiano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "Lingala"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "Hausa"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "Baschiro"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "Giavanese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "Sundanese"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "Cantonese"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
msgid "A connection error occurred"
msgstr "Si è verificato un errore di connessione"
-#: buzz/settings/shortcut.py:17
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "Avvio di Whisper.cpp..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "Inizio trascrizione..."
+
+#: buzz/settings/shortcut.py
msgid "Open Record Window"
msgstr "Apri finestra di registrazione"
-#: buzz/settings/shortcut.py:18
+#: buzz/settings/shortcut.py
msgid "Import File"
msgstr "Importa file"
-#: buzz/settings/shortcut.py:20
+#: buzz/settings/shortcut.py
msgid "Open Preferences Window"
msgstr "Apri la finestra delle preferenze"
-#: buzz/settings/shortcut.py:22
+#: buzz/settings/shortcut.py
msgid "View Transcript Text"
msgstr "Visualizza il testo della trascrizione"
-#: buzz/settings/shortcut.py:23
+#: buzz/settings/shortcut.py
msgid "View Transcript Translation"
msgstr "Visualizza la trascrizione della traduzione"
-#: buzz/settings/shortcut.py:24
+#: buzz/settings/shortcut.py
msgid "View Transcript Timestamps"
msgstr "Visualizza i timestamp della trascrizione"
-#: buzz/settings/recording_transcriber_mode.py:5
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "Cerca trascrizione"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "Vai al risultato della ricerca della trascrizione successiva"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "Vai al risultato della ricerca della trascrizione precedente"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "Scorri fino al testo corrente"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "Riproduci/Pausa audio"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "Riproduci il segmento corrente"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "Attiva/disattiva i controlli di riproduzione"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "Riduci l'ora di inizio del segmento"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "Aumenta l'ora di inizio del segmento"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "Diminuisci l'ora di fine del segmento"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "Aumenta l'ora di fine del segmento"
+
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append below"
msgstr "Aggiungere sotto"
-#: buzz/settings/recording_transcriber_mode.py:6
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append above"
msgstr "Aggiungere sopra"
-#: buzz/settings/recording_transcriber_mode.py:7
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append and correct"
msgstr "Aggiungere e correggere"
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
+msgstr ""
+"Estrazione del parlato non riuscita! Controlla la tua connessione Internet — "
+"potrebbe essere necessario scaricare un modello."
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "Separate da virgola, esempio: \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+
+#~ msgid "Temperature:"
+#~ msgstr "Temperatura:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr ""
+#~ "Per favore, traduci ogni testo che ti viene inviato dall'inglese allo "
+#~ "spagnolo."
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "Errore di traduzione, controlla i log!"
+
+#~ msgid "Snap permission notice"
+#~ msgstr "Avviso di autorizzazione Snap"
+
+#~ msgid ""
+#~ "Detected missing permissions, please check that snap permissions have "
+#~ "been granted"
+#~ msgstr ""
+#~ "Rilevate autorizzazioni mancanti, verificare che le autorizzazioni snap "
+#~ "siano state concesse"
+
+#~ msgid ""
+#~ "To enable necessary permissions run the following commands in the terminal"
+#~ msgstr ""
+#~ "Per abilitare le autorizzazioni necessarie, eseguire i seguenti comandi "
+#~ "nel terminale"
+
+#~ msgid "Close"
+#~ msgstr "Chiudi"
+
+#~ msgid "Enter instructions for AI on how to translate..."
+#~ msgstr "Inserisci le istruzioni per l'IA su come tradurre..."
+
+#~ msgid "Enter target characters per subtitle:"
+#~ msgstr "Inserisci i caratteri di destinazione per sottotitolo:"
+
#~ msgid "ID"
#~ msgstr "ID"
diff --git a/buzz/locale/ja_JP/LC_MESSAGES/buzz.po b/buzz/locale/ja_JP/LC_MESSAGES/buzz.po
index 999ae0c1..8cbc04d0 100644
--- a/buzz/locale/ja_JP/LC_MESSAGES/buzz.po
+++ b/buzz/locale/ja_JP/LC_MESSAGES/buzz.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-11-03 08:32+0200\n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: nunawa <71294849+nunawa@users.noreply.github.com>\n"
"Language-Team: \n"
@@ -12,93 +12,209 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.5\n"
-#: buzz/widgets/import_url_dialog.py:19 buzz/settings/shortcut.py:19
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
msgid "Import URL"
msgstr "URLをインポートする"
-#: buzz/widgets/import_url_dialog.py:22
+#: buzz/widgets/import_url_dialog.py
msgid "https://example.com/audio.mp3"
msgstr "https://example.com/audio.mp3"
-#: buzz/widgets/import_url_dialog.py:28
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:69
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:245
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:97
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:295
-#: buzz/widgets/main_window.py:234
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
msgid "Ok"
msgstr "Ok"
-#: buzz/widgets/import_url_dialog.py:29
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:70
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:246
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:296
-#: buzz/widgets/model_download_progress_dialog.py:29
-#: buzz/widgets/main_window.py:235
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
msgid "Cancel"
msgstr "キャンセル"
-#: buzz/widgets/import_url_dialog.py:34
+#: buzz/widgets/import_url_dialog.py
msgid "URL:"
msgstr "URL:"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "Invalid URL"
msgstr "無効なURL"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "The URL you entered is invalid."
msgstr "入力されたURLは無効です。"
-#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py:29
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "ライブ文字起こしプレゼンテーション"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
msgid "Reset to Defaults"
msgstr "デフォルトに戻す"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:52
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "英語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "カタルーニャ語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "デンマーク語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "オランダ語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "ドイツ語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "スペイン語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "イタリア語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "日本語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "ラトビア語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "ポーランド語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "ポルトガル語(ブラジル)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "ウクライナ語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "中国語(簡体字)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "中国語(繁体字)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "再起動が必要です!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "UIの言語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Font Size"
msgstr "フォントサイズ"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:61
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Test"
msgstr "テスト"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:67
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API key"
msgstr "OpenAI APIキー"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:80
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI base url"
msgstr "OpenAI ベースURL"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:89
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "OpenAI APIモデル"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Default export file name"
msgstr "デフォルトの出力ファイル名"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Enable live recording transcription export"
msgstr "ライブ録音書き起こしの出力を有効にする"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:101
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:47
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:50
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Browse"
msgstr "参照"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:120
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Export folder"
msgstr "出力フォルダ"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:131
-#, fuzzy
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Live recording mode"
-msgstr "ライブ録音"
+msgstr "ライブ録音モード"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:156
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:162
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
+msgstr ""
+"注意:ライブ録音の出力設定は、将来のバージョンでライブ録音画面の詳細設定に移"
+"動されます。"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "メモリ使用量を削減するために8ビット量子化を使用する"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"HuggingfaceおよびFaster Whisperモデルに適用されます。GPUメモリ使用量を削減し"
+"ますが、文字起こしの品質がわずかに低下する場合があります。"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "GPU RAMを削減する"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "CPUのみを使用してGPUアクセラレーションを無効にする"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+"大きなモデルがGPUメモリに収まらずBuzzがクラッシュする場合に設定してください"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "GPUを無効にする"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API Key Test"
msgstr "OpenAI APIキー テスト"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:157
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"Your API key is valid. Buzz will use this key to perform Whisper API "
"transcriptions and AI translations."
@@ -106,22 +222,24 @@ msgstr ""
"あなたのAPIキーは有効です。Buzzはこのキーを使ってWhisper APIの書き起こしとAI"
"翻訳を行います。"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:173
-#, fuzzy
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Invalid API key"
-msgstr "OpenAI APIキー"
+msgstr "無効なAPIキー"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:174
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
-"API supports only base64 characters (A-Za-z0-9+/=). Other characters in API "
-"key may cause errors."
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
msgstr ""
+"APIはbase64文字(A-Za-z0-9+/=_-)のみをサポートしています。APIキーにその他の"
+"文字が含まれているとエラーが発生する場合があります。"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:192
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Select Export Folder"
msgstr "出力フォルダを選択"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:244
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"OpenAI API returned invalid response. Please check the API url or your key. "
"Transcription and translation may still work if the API does not support key "
@@ -131,275 +249,481 @@ msgstr ""
"がキーの検証をサポートしていない場合でも、文字起こしや翻訳は動作する場合があ"
"ります。"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:42
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Enable folder watch"
msgstr "フォルダ監視を有効にする"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "処理済みファイルを削除"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Input folder"
msgstr "入力フォルダ"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Output folder"
msgstr "出力フォルダ"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:105
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Input Folder"
msgstr "入力フォルダを選択"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:114
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Output Folder"
msgstr "出力フォルダを選択"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:43
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Preferences"
msgstr "設定"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:50
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "General"
msgstr "一般"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:53
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Models"
msgstr "モデル"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:57
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Shortcuts"
msgstr "ショートカット"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:63
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Folder Watch"
msgstr "フォルダ監視"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:70
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Group"
msgstr "グループ"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:82
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Huggingface ID of a Faster whisper model"
msgstr "Faster whisperモデルのHuggingface ID"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download"
msgstr "ダウンロード"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:99
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Show file location"
msgstr "ファイルの場所を表示"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:107
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete"
msgstr "削除"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:138
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Downloaded"
msgstr "ダウンロード済み"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:143
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Available for Download"
msgstr "ダウンロード可能"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:164
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download link to Whisper.cpp ggml model file"
msgstr "Whisper.cpp ggmlモデルファイルのダウンロードリンク"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:239
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete Model"
msgstr "モデルを削除"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:240
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Are you sure you want to delete the selected model?"
msgstr "選択したモデルを本当に削除しますか?"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:268
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download failed"
msgstr "ダウンロード失敗"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:269
-#: buzz/widgets/main_window.py:291 buzz/model_loader.py:503
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
msgid "Error"
msgstr "エラー"
-#: buzz/widgets/record_button.py:10 buzz/widgets/record_button.py:17
-#: buzz/widgets/main_window_toolbar.py:35
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
msgid "Record"
msgstr "録音する"
-#: buzz/widgets/record_button.py:21
+#: buzz/widgets/record_button.py
msgid "Stop"
msgstr "停止する"
-#: buzz/widgets/transcriber/languages_combo_box.py:35
-#: buzz/transcriber/transcriber.py:159
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
msgid "Detect Language"
msgstr "自動検出"
-#: buzz/widgets/transcriber/file_transcriber_widget.py:79
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "例: eng, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"ISO 639-3言語コード(3文字)を入力してください。\n"
+"例: eng(英語)、fra(フランス語)、deu(ドイツ語)、\n"
+"spa(スペイン語)、lav(ラトビア語)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
msgid "Run"
msgstr "実行"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:92
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Model:"
msgstr "モデル:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:104
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
msgid "First time use of a model may take up to several minutest to load."
-msgstr ""
+msgstr "モデルの初回使用時は読み込みに数分かかる場合があります。"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:113
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Api Key:"
msgstr "APIキー:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:114
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Task:"
msgstr "タスク:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:115
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Language:"
msgstr "言語:"
-#: buzz/widgets/transcriber/initial_prompt_text_edit.py:10
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
msgid "Enter prompt..."
msgstr "プロンプトを入力..."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:33
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Advanced Settings"
msgstr "高度な設定"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:37
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Speech recognition settings"
msgstr "音声認識設定"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:46
-msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-msgstr "コンマ区切り、例: \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:55
-msgid "Temperature:"
-msgstr "サンプリング温度:"
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:66
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Initial Prompt:"
msgstr "プロンプト:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:68
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Translation settings"
msgstr "翻訳設定"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:72
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Enable AI translation"
msgstr "AIによる翻訳を有効にする"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:84
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "AI model:"
msgstr "AIのモデル:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:88
-msgid "Enter instructions for AI on how to translate..."
-msgstr "AIのための翻訳方法の指示を入力..."
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
+msgstr ""
+"送信された各テキストを英語からスペイン語に翻訳してください。翻訳は自動化され"
+"たシステムで使用されます。コメントやメモは追加せず、翻訳のみを提供してくださ"
+"い。"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:92
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Instructions for AI:"
msgstr "AIへの指示:"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:42
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "録音設定"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "無音閾値:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "ライブ録音モード:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "行区切り:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "トランスクリプションステップ:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "未確認を非表示"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "ライブ録音の出力を有効にする"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "出力フォルダ:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "出力ファイル名:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "テキストファイル (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "出力ファイル形式:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"出力エントリ数の制限\n"
+"(0 = すべて出力):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Word-level timings"
msgstr "単語レベルでのタイミング"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:66
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "音声を抽出する"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Export:"
msgstr "出力形式:"
-#: buzz/widgets/transcriber/hugging_face_search_line_edit.py:37
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
msgid "Huggingface ID of a model"
msgstr "モデルのHuggingface ID"
-#: buzz/widgets/transcriber/advanced_settings_button.py:9
+#: buzz/widgets/transcriber/advanced_settings_button.py
msgid "Advanced..."
msgstr "高度な設定..."
-#: buzz/widgets/main_window_toolbar.py:39
-msgid "New Transcription"
-msgstr "新しい文字起こし"
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "新しいファイルの文字起こし"
-#: buzz/widgets/main_window_toolbar.py:46
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "新しいURLの文字起こし"
+
+#: buzz/widgets/main_window_toolbar.py
msgid "Open Transcript"
msgstr "文字起こしを開く"
-#: buzz/widgets/main_window_toolbar.py:52 buzz/settings/shortcut.py:27
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
msgid "Cancel Transcription"
msgstr "文字起こしをキャンセルする"
-#: buzz/widgets/main_window_toolbar.py:60 buzz/widgets/main_window.py:223
-#: buzz/settings/shortcut.py:26
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
msgid "Clear History"
msgstr "履歴を削除する"
-#: buzz/widgets/transcription_tasks_table_widget.py:64
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "アップデートあり"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "In Progress"
msgstr "進行中"
-#: buzz/widgets/transcription_tasks_table_widget.py:67
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Completed"
msgstr "完了"
-#: buzz/widgets/transcription_tasks_table_widget.py:74
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Failed"
msgstr "失敗"
-#: buzz/widgets/transcription_tasks_table_widget.py:77
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Canceled"
msgstr "キャンセル済み"
-#: buzz/widgets/transcription_tasks_table_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Queued"
msgstr "キュー済み"
-#: buzz/widgets/transcription_tasks_table_widget.py:86
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "File Name / URL"
msgstr "ファイル名 / URL"
-#: buzz/widgets/transcription_tasks_table_widget.py:98
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Model"
msgstr "モデル"
-#: buzz/widgets/transcription_tasks_table_widget.py:107
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Task"
msgstr "タスク"
-#: buzz/widgets/transcription_tasks_table_widget.py:116
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Status"
msgstr "ステータス"
-#: buzz/widgets/transcription_tasks_table_widget.py:124
-msgid "Date Added"
-msgstr "追加日"
-
-#: buzz/widgets/transcription_tasks_table_widget.py:135
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Date Completed"
msgstr "完了日"
-#: buzz/widgets/recording_transcriber_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "追加日"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "メモ"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "列の順序をリセット"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "文字起こしを再開する"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "名前を変更"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "メモを追加・編集"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "文字起こしの名前を変更"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "新しい名前を入力してください:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "この文字起こしに関するメモを入力してください:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "再開できません"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr "再開できるのは失敗またはキャンセルされた文字起こしのみです。"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "文字起こしの再開に失敗しました: {}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+"文字起こしを再開できませんでした: モデルが利用できず、ダウンロードもできませ"
+"んでした。"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr "文字起こしを再開できませんでした: 文字起こしワーカーが見つかりません。"
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Live Recording"
msgstr "ライブ録音"
-#: buzz/widgets/recording_transcriber_widget.py:144
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Click Record to begin..."
msgstr "クリックで録音を開始..."
-#: buzz/widgets/recording_transcriber_widget.py:147
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Waiting for AI translation..."
msgstr "AI翻訳を待っています..."
-#: buzz/widgets/recording_transcriber_widget.py:159
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Microphone:"
msgstr "マイク:"
-#: buzz/widgets/recording_transcriber_widget.py:523
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "新しいウィンドウで表示"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "テキストサイズ:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "テーマ"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "ライト"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "ダーク"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "カスタム"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "テキストの色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "背景の色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "全画面表示"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "コピー"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "文字起こしをクリップボードにコピー"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "コピーするものがありません!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "コピーに失敗しました"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "コピーしました!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "テキストの色を選択"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "背景の色を選択"
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "An error occurred while starting a new recording:"
msgstr "新規録音開始時にエラーが発生しました:"
-#: buzz/widgets/recording_transcriber_widget.py:527
+#: buzz/widgets/recording_transcriber_widget.py
msgid ""
"Please check your audio devices or check the application logs for more "
"information."
@@ -407,189 +731,931 @@ msgstr ""
"オーディオデバイスを確認するか、詳細をアプリケーションのログで確認してくださ"
"い。"
-#: buzz/widgets/about_dialog.py:80
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "Buzzの新しいバージョンが利用可能です!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "現在のバージョン:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "新しいバージョン:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "リリースノート:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "ダウンロードしてインストール"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "お使いのプラットフォーム向けのダウンロードURLがありません。"
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "ファイル {} / {} をダウンロード中..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "ファイル {} / {} をダウンロード中 ({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "ダウンロード失敗"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "アップデートのダウンロードに失敗しました: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "インストーラーの保存に失敗しました: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "ダウンロード完了!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "インストーラーの実行に失敗しました: {}"
+
+#: buzz/widgets/about_dialog.py
msgid "Check for updates"
msgstr "アップデートを確認する"
-#: buzz/widgets/about_dialog.py:109
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "ログを表示"
+
+#: buzz/widgets/about_dialog.py
msgid "You're up to date!"
msgstr "最新の状態です!"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:93
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "平均音量"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "キュー"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "Start"
msgstr "開始"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:94
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "End"
msgstr "終了"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:95
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:34
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:30
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text"
msgstr "テキスト"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:96
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:40
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:31
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:64
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Translation"
msgstr "翻訳"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:26
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "View"
msgstr "表示"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:46
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "Timestamps"
msgstr "タイムスタンプ"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:156
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Export"
msgstr "出力"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:170
-#: buzz/transcriber/transcriber.py:24
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Translate"
msgstr "翻訳"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:180
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Resize"
msgstr "リサイズ"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:279
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "話者を識別する"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "検索"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "検索バーの表示・非表示 (Ctrl+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "検索:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "検索するテキストを入力..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "前の一致 (Shift+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "次の一致 (Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "クリア"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "再生コントロール:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "セグメントをループ"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr "文字起こしセグメントをクリックしたときのループを有効・無効にする"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "音声に追従"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+"文字起こし内で現在の音声位置への追従を有効・無効にします。有効にすると、現在"
+"のテキストに自動的にスクロールします。"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "現在位置にスクロール"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "現在話されているテキストにスクロールする"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "100件以上中の1件目"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "1 / "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr " 件一致"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "一致する項目が見つかりません"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr " / 100件以上一致"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr " / "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "API Key Required"
msgstr "APIキーが必要"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:280
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Please enter OpenAI API Key in preferences"
msgstr "設定画面でOpenAI APIキーを入力してください"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:297
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "終了時刻を延長"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "終了を最大(秒)まで延長"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "終了を延長"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "リサイズオプション"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Desired subtitle length"
msgstr "希望する字幕の長さ"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:298
-msgid "Enter target characters per subtitle:"
-msgstr "字幕の目標文字数を入力してください:"
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
+msgstr "文字起こし時に単語レベルのタイミングが無効だった場合のみ使用可能"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:78
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "結合オプション"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "間隔で結合"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "句読点で分割"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "最大文字数で分割"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "結合"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr "文字起こし時に単語レベルのタイミングが有効だった場合のみ使用可能"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr "話者識別は利用できません: 必要なライブラリの読み込みに失敗しました。"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 文字起こしを収集中"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 音声を読み込み中"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 アライメントモデルを読み込み中"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr "3/8 アライメントモデルを読み込み中(キャッシュで再試行中...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+"アライメントモデルの読み込みに失敗しました。インターネット接続を確認して再度"
+"お試しください。"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 音声を処理中"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 文字起こしを準備中"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 話者を識別中"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 話者を文字起こしにマッピング中"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 識別完了"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 話者識別中にエラーが発生しました"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "ステップ1: 話者を識別する"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "識別"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "話者を識別する準備ができました"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "音声ファイルが見つかりません"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "ステップ2: 話者に名前を付ける"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "サンプルを再生"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "話者の文を結合"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "保存"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "キャンセル中..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "キャンセル済み"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Save File"
msgstr "ファイルを保存"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:80
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text files"
msgstr "テキストファイル"
-#: buzz/widgets/snap_notice.py:9
-msgid "Snap permission notice"
-msgstr "Snap権限通知"
-
-#: buzz/widgets/snap_notice.py:13
-msgid ""
-"Detected missing permissions, please check that snap permissions have been "
-"granted"
-msgstr ""
-"不足している権限が検出されました。Snapパッケージに権限が付与されていることを"
-"確認してください"
-
-#: buzz/widgets/snap_notice.py:16
-msgid ""
-"To enable necessary permissions run the following commands in the terminal"
-msgstr ""
-"必要なパーミッションを有効にするには、ターミナルで以下のコマンドを実行してく"
-"ださい"
-
-#: buzz/widgets/snap_notice.py:30
-msgid "Close"
-msgstr "閉じる"
-
-#: buzz/widgets/model_download_progress_dialog.py:36
+#: buzz/widgets/model_download_progress_dialog.py
msgid "Downloading model"
msgstr "モデルをダウンロード中"
-#: buzz/widgets/model_download_progress_dialog.py:37
+#: buzz/widgets/model_download_progress_dialog.py
msgid "remaining"
msgstr "残り"
-#: buzz/widgets/menu_bar.py:38
+#: buzz/widgets/menu_bar.py
msgid "Import File..."
msgstr "ファイルをインポートする..."
-#: buzz/widgets/menu_bar.py:41
+#: buzz/widgets/menu_bar.py
msgid "Import URL..."
msgstr "URLをインポートする..."
-#: buzz/widgets/menu_bar.py:44
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "フォルダをインポートする..."
+
+#: buzz/widgets/menu_bar.py
msgid "About"
msgstr "About"
-#: buzz/widgets/menu_bar.py:48
+#: buzz/widgets/menu_bar.py
msgid "Preferences..."
msgstr "設定..."
-#: buzz/widgets/menu_bar.py:51 buzz/widgets/menu_bar.py:61
+#: buzz/widgets/menu_bar.py
msgid "Help"
msgstr "ヘルプ"
-#: buzz/widgets/menu_bar.py:57
+#: buzz/widgets/menu_bar.py
msgid "File"
msgstr "ファイル"
-#: buzz/widgets/main_window.py:227
+#: buzz/widgets/main_window.py
msgid ""
"Are you sure you want to delete the selected transcription(s)? This action "
"cannot be undone."
msgstr "本当に選択された文字起こしを削除しますか? この操作は元に戻せません。"
-#: buzz/widgets/main_window.py:255
+#: buzz/widgets/main_window.py
msgid "Select audio file"
msgstr "音声ファイルを選択"
-#: buzz/widgets/main_window.py:291
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "入力フォルダを選択"
+
+#: buzz/widgets/main_window.py
msgid "Unable to save OpenAI API key to keyring"
msgstr "OpenAI API キーをkeyringに保存できません"
-#: buzz/transcriber/transcriber.py:25
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr "Whisperサーバーの起動に失敗しました。詳細はログを確認してください。"
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"メモリ不足のためWhisperサーバーの起動に失敗しました。より小さいモデルで再試行"
+"してください。CPUモードを強制するには環境変数BUZZ_FORCE_CPU=TRUEを使用してく"
+"ださい。"
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "英語に翻訳"
+
+#: buzz/transcriber/transcriber.py
msgid "Transcribe"
msgstr "文字起こし"
-#: buzz/model_loader.py:532
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "中国語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "ロシア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "韓国語"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "フランス語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "ポルトガル語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "トルコ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "アラビア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "スウェーデン語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "インドネシア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "ヒンディー語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "フィンランド語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "ベトナム語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "ヘブライ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "ギリシャ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "マレー語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "チェコ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "ルーマニア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "ハンガリー語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "タミル語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "ノルウェー語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "タイ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "ウルドゥー語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "クロアチア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "ブルガリア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "リトアニア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "ラテン語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "マオリ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "マラヤーラム語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "ウェールズ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "スロバキア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "テルグ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "ペルシャ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "ベンガル語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "セルビア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "アゼルバイジャン語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "スロベニア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "カンナダ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "エストニア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "マケドニア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "ブルトン語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "バスク語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "アイスランド語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "アルメニア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "ネパール語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "モンゴル語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "ボスニア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "カザフ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "アルバニア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "スワヒリ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "ガリシア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "マラーティー語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "パンジャブ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "シンハラ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "クメール語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "ショナ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "ヨルバ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "ソマリ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "アフリカーンス語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "オック語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "ジョージア語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "ベラルーシ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "タジク語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "シンド語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "グジャラート語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "アムハラ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "イディッシュ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "ラオス語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "ウズベク語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "フェロー語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "ハイチ・クレオール語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "パシュトー語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "トルクメン語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "ニーノシュク語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "マルタ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "サンスクリット語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "ルクセンブルク語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "ミャンマー語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "チベット語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "タガログ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "マラガシ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "アッサム語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "タタール語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "ハワイ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "リンガラ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "ハウサ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "バシキール語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "ジャワ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "スンダ語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "広東語"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
msgid "A connection error occurred"
msgstr "接続エラーが発生しました"
-#: buzz/settings/shortcut.py:17
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "Whisper.cppを起動中..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "文字起こしを開始中..."
+
+#: buzz/settings/shortcut.py
msgid "Open Record Window"
msgstr "録音画面を開く"
-#: buzz/settings/shortcut.py:18
+#: buzz/settings/shortcut.py
msgid "Import File"
msgstr "ファイルをインポートする"
-#: buzz/settings/shortcut.py:20
+#: buzz/settings/shortcut.py
msgid "Open Preferences Window"
msgstr "設定画面を開く"
-#: buzz/settings/shortcut.py:22
+#: buzz/settings/shortcut.py
msgid "View Transcript Text"
msgstr "文字起こしを表示する"
-#: buzz/settings/shortcut.py:23
+#: buzz/settings/shortcut.py
msgid "View Transcript Translation"
msgstr "文字起こしの翻訳を表示する"
-#: buzz/settings/shortcut.py:24
+#: buzz/settings/shortcut.py
msgid "View Transcript Timestamps"
msgstr "文字起こしのタイムスタンプを表示する"
-#: buzz/settings/recording_transcriber_mode.py:5
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "文字起こしを検索"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "次の文字起こし検索結果へ移動"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "前の文字起こし検索結果へ移動"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "現在のテキストにスクロール"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "音声の再生・一時停止"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "現在のセグメントを再再生"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "再生コントロールの表示切替"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "セグメント開始時刻を早める"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "セグメント開始時刻を遅らせる"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "セグメント終了時刻を早める"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "セグメント終了時刻を遅らせる"
+
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append below"
-msgstr ""
+msgstr "下に追加"
-#: buzz/settings/recording_transcriber_mode.py:6
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append above"
-msgstr ""
+msgstr "上に追加"
-#: buzz/settings/recording_transcriber_mode.py:7
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append and correct"
+msgstr "追加して修正"
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
msgstr ""
+"音声抽出に失敗しました!インターネット接続を確認してください。モデルのダウン"
+"ロードが必要な場合があります。"
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "コンマ区切り、例: \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+
+#~ msgid "Temperature:"
+#~ msgstr "サンプリング温度:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr "送られてくる各テキストを英語からスペイン語に翻訳してください。"
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "翻訳エラーが発生しました。ログを確認してください!"
+
+#~ msgid "Snap permission notice"
+#~ msgstr "Snap権限通知"
+
+#~ msgid ""
+#~ "Detected missing permissions, please check that snap permissions have "
+#~ "been granted"
+#~ msgstr ""
+#~ "不足している権限が検出されました。Snapパッケージに権限が付与されていること"
+#~ "を確認してください"
+
+#~ msgid ""
+#~ "To enable necessary permissions run the following commands in the terminal"
+#~ msgstr ""
+#~ "必要なパーミッションを有効にするには、ターミナルで以下のコマンドを実行して"
+#~ "ください"
+
+#~ msgid "Close"
+#~ msgstr "閉じる"
+
+#~ msgid "Enter instructions for AI on how to translate..."
+#~ msgstr "AIのための翻訳方法の指示を入力..."
+
+#~ msgid "Enter target characters per subtitle:"
+#~ msgstr "字幕の目標文字数を入力してください:"
diff --git a/buzz/locale/lv_LV/LC_MESSAGES/buzz.po b/buzz/locale/lv_LV/LC_MESSAGES/buzz.po
index 7c9581e7..66860657 100644
--- a/buzz/locale/lv_LV/LC_MESSAGES/buzz.po
+++ b/buzz/locale/lv_LV/LC_MESSAGES/buzz.po
@@ -3,13 +3,12 @@
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
-#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-11-03 08:32+0200\n"
-"PO-Revision-Date: 2024-11-03 08:33+0200\n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
+"PO-Revision-Date: 2026-03-06 13:23+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: lv_LV\n"
@@ -18,94 +17,210 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.4.2\n"
-#: buzz/widgets/import_url_dialog.py:19 buzz/settings/shortcut.py:19
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
msgid "Import URL"
msgstr "Importēt URL"
-#: buzz/widgets/import_url_dialog.py:22
+#: buzz/widgets/import_url_dialog.py
msgid "https://example.com/audio.mp3"
msgstr "https://example.com/audio.mp3"
-#: buzz/widgets/import_url_dialog.py:28
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:69
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:245
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:97
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:295
-#: buzz/widgets/main_window.py:234
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
msgid "Ok"
msgstr "Labi"
-#: buzz/widgets/import_url_dialog.py:29
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:70
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:246
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:296
-#: buzz/widgets/model_download_progress_dialog.py:29
-#: buzz/widgets/main_window.py:235
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
msgid "Cancel"
msgstr "Atcelt"
-#: buzz/widgets/import_url_dialog.py:34
+#: buzz/widgets/import_url_dialog.py
msgid "URL:"
msgstr "URL:"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "Invalid URL"
msgstr "Adrese nav derīga"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "The URL you entered is invalid."
msgstr "Jūsu ievadītā URL adrese nav derīga."
-#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py:29
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "Dzīvais ieraksts"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
msgid "Reset to Defaults"
msgstr "Atjaunot noklusētos"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:52
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "Angļu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "Katalāņu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "Dāņu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "Holandiešu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "Vācu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "Spāņu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "Itāļu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "Japāņu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "Latviešu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "Poļu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "Portugāļu (Brazīlijas)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "Ukraiņu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "Ķīniešu (vienkāršotā)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "Ķīniešu (tradicionālā)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "Jāpārstartē!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "Programmas valoda"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Font Size"
msgstr "Fonta izmērs"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:61
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Test"
msgstr "Pārbaudīt"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:67
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API key"
msgstr "OpenAI API atslēga"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:80
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI base url"
msgstr "OpenAI adrese"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:89
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "OpenAI modelis"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Default export file name"
msgstr "Eksporta fails"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Enable live recording transcription export"
msgstr "Eksportēt dzīvā ieraksta transkriptus"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:101
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:47
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:50
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Browse"
msgstr "Izvēlēties"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:120
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Export folder"
msgstr "Eksportēt mapē"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:131
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Live recording mode"
-msgstr ""
-"Dzīvā ieraksta\n"
-"režīms"
+msgstr "Dzīvā ieraksta režīms"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:156
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:162
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
+msgstr ""
+"Piezīme: Dzīvā ieraksta iestatījumi nākotnes Buzz versijās tiks pārvietoti "
+"uz Papildu iestatījumu sadaļu Dzīvā ieraksta logā."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "Izmantot 8bitu kvantizāciju, lai samazinātu nepieciešamo atmiņu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"Izmantojams Huggingface un Faster whisper modeļiem, lai samazinātu "
+"nepieciešamo atmiņas daudzumu, nedaudz zaudējot atpazīšanas kvalitāti."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "Optimizēt GPU atmiņu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "Izmantot tikai CPU un deaktivēt GPU paātrināšanu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+"Aktivizējiet šo, ja lielāki modeļi neietilpst jūsu video kartes atmiņā un "
+"Buzz avarē"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "Deaktivēt GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API Key Test"
msgstr "OpenAI API atslēgas pārbaude"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:157
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"Your API key is valid. Buzz will use this key to perform Whisper API "
"transcriptions and AI translations."
@@ -113,23 +228,24 @@ msgstr ""
"Jūsu API atslēga ir derīga. Buzz izmantos to runas atpazīšanai ar Whisper "
"API un tulkošanai."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:173
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Invalid API key"
msgstr "Nederīga API atslēga"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:174
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
-"API supports only base64 characters (A-Za-z0-9+/=). Other characters in API "
-"key may cause errors."
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
msgstr ""
-"API atbalsta tikai base64 simbolus (A-Za-z0-9+/=). Citi simboli API atslēgā "
-"var radīt kļūdas."
+"API atbalsta tikai base64 simbolus (A-Za-z0-9+/=_-). Citi simboli API "
+"atslēgā var radīt kļūdas."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:192
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Select Export Folder"
msgstr "Izvēlieties mapi kurā eksportēt"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:244
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"OpenAI API returned invalid response. Please check the API url or your key. "
"Transcription and translation may still work if the API does not support key "
@@ -139,277 +255,482 @@ msgstr ""
"Atpazīšana un tulkošana joprojām var strādāt, ja API neatbalsta atslēgu "
"pārbaudi."
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:42
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Enable folder watch"
msgstr "Ieslēgt mapes vērošanu"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "Dzēst apstrādātos failus"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Input folder"
msgstr "Vērojamā mape"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Output folder"
msgstr "Rezultātu mape"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:105
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Input Folder"
msgstr "Izvēlieties vērojamo mapi"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:114
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Output Folder"
msgstr "Izvēlieties rezultātu mapi"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:43
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Preferences"
msgstr "Iestatījumi"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:50
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "General"
msgstr "Vispārīgi"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:53
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Models"
msgstr "Modeļi"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:57
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Shortcuts"
msgstr "Īsinājumi"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:63
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Folder Watch"
msgstr "Mapes vērošana"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:70
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Group"
msgstr "Veids"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:82
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Huggingface ID of a Faster whisper model"
-msgstr "Faster Whisper modeļa Huggingface ID"
+msgstr "Faster whisper modeļa Huggingface ID"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download"
msgstr "Lejupielādēt"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:99
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Show file location"
msgstr "Rādīt faila atrašanās vietu"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:107
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete"
msgstr "Dzēst"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:138
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Downloaded"
msgstr "Lejupielādēts"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:143
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Available for Download"
msgstr "Pieejams lejupielādei"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:164
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download link to Whisper.cpp ggml model file"
msgstr "Whisper.cpp ggml modeļa datnes lejupielādes saite"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:239
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete Model"
msgstr "Dzēst modeli"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:240
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Are you sure you want to delete the selected model?"
msgstr "Vai tiešām dzēst izvēlēto modeli?"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:268
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download failed"
msgstr "Lejupielāde neizdevās"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:269
-#: buzz/widgets/main_window.py:291 buzz/model_loader.py:503
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
msgid "Error"
msgstr "Kļūda"
-#: buzz/widgets/record_button.py:10 buzz/widgets/record_button.py:17
-#: buzz/widgets/main_window_toolbar.py:35
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
msgid "Record"
msgstr "Ierakstīt"
-#: buzz/widgets/record_button.py:21
+#: buzz/widgets/record_button.py
msgid "Stop"
msgstr "Apturēt"
-#: buzz/widgets/transcriber/languages_combo_box.py:35
-#: buzz/transcriber/transcriber.py:159
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
msgid "Detect Language"
msgstr "Noteikt valodu"
-#: buzz/widgets/transcriber/file_transcriber_widget.py:79
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "piem. eng, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"Ievadiet valodas ISO 639-3 kodu (3 burti).\n"
+"Piemēram: eng (Angļu), fra (Franču), deu (Vācu),\n"
+"spa (Spāņu), lav (Latviešu)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
msgid "Run"
msgstr "Apstrādāt"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:92
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Model:"
msgstr "Modelis:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:104
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
msgid "First time use of a model may take up to several minutest to load."
msgstr "Pirmā modeļa ielādes reize var aizņemt pat vairākas minūtes."
-#: buzz/widgets/transcriber/transcription_options_group_box.py:113
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Api Key:"
msgstr "API atslēga:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:114
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Task:"
msgstr "Uzdevums:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:115
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Language:"
msgstr "Valoda:"
-#: buzz/widgets/transcriber/initial_prompt_text_edit.py:10
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
msgid "Enter prompt..."
msgstr "Ievadiet vaicājumu..."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:33
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Advanced Settings"
msgstr "Papildu iestatījumi"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:37
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Speech recognition settings"
msgstr "Runas atpazīšanas iestatījumi"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:46
-msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-msgstr "Atdalīti ar komatu, piemēram, \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:55
-msgid "Temperature:"
-msgstr "Temperatūra:"
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:66
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Initial Prompt:"
msgstr ""
"Sākotnējais\n"
"vaicājums:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:68
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Translation settings"
msgstr "Tulkojuma iestatījumi"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:72
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Enable AI translation"
msgstr "Tulkot ar MI"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:84
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "AI model:"
msgstr "AI modelis:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:88
-msgid "Enter instructions for AI on how to translate..."
-msgstr "Ievadiet tulkošanas norādes mākslīgajam intelektam..."
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
+msgstr ""
+"Lūdzu, iztulko katru nosūtīto tekstu no angļu valodas spāņu valodā. "
+"Tulkojums tiks izmantots automatizētā sistēmā, lūdzu, nepievieno nekādus "
+"komentārus vai piezīmes, tikai tulkojumu."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:92
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Instructions for AI:"
msgstr "Norādes MI:"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:42
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "Dzīvā ieraksta iestatījumi"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "Klusuma slieksnis:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "Dzīvā ieraksta režīms:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "Rindiņu atdalītājs:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "Atpazīšanas solis:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "Slēpt mainīgos fragmentus"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "Eksportēt dzīvā ieraksta transkriptus"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "Eksportēt mapē:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "Eksporta fails:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "Teksta fails (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "Eksporta faila tips:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"Eksportēt tikai pēdējos\n"
+"(0 = eksportēt visus):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Word-level timings"
msgstr "Dalīt pa vārdiem"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:66
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "Atdalīt runu"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Export:"
msgstr "Eksportēt:"
-#: buzz/widgets/transcriber/hugging_face_search_line_edit.py:37
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
msgid "Huggingface ID of a model"
msgstr "Modeļa Huggingface ID"
-#: buzz/widgets/transcriber/advanced_settings_button.py:9
+#: buzz/widgets/transcriber/advanced_settings_button.py
msgid "Advanced..."
msgstr "Papildu iestatījumi..."
-#: buzz/widgets/main_window_toolbar.py:39
-msgid "New Transcription"
-msgstr "Jauna atpazīšanas"
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "Jauna faila atpazīšana"
-#: buzz/widgets/main_window_toolbar.py:46
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "Jauna saites atpazīšana"
+
+#: buzz/widgets/main_window_toolbar.py
msgid "Open Transcript"
msgstr "Atvērt transkriptu"
-#: buzz/widgets/main_window_toolbar.py:52 buzz/settings/shortcut.py:27
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
msgid "Cancel Transcription"
msgstr "Atcelt atpazīšanu"
-#: buzz/widgets/main_window_toolbar.py:60 buzz/widgets/main_window.py:223
-#: buzz/settings/shortcut.py:26
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
msgid "Clear History"
msgstr "Notīrīt vēsturi"
-#: buzz/widgets/transcription_tasks_table_widget.py:64
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "Pieejams atjauninājums"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "In Progress"
msgstr "Apstrādā"
-#: buzz/widgets/transcription_tasks_table_widget.py:67
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Completed"
msgstr "Pabeigts"
-#: buzz/widgets/transcription_tasks_table_widget.py:74
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Failed"
msgstr "Neizdevās"
-#: buzz/widgets/transcription_tasks_table_widget.py:77
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Canceled"
msgstr "Atcelts"
-#: buzz/widgets/transcription_tasks_table_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Queued"
msgstr "Ierindots"
-#: buzz/widgets/transcription_tasks_table_widget.py:86
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "File Name / URL"
msgstr "Fails / URL"
-#: buzz/widgets/transcription_tasks_table_widget.py:98
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Model"
msgstr "Modelis"
-#: buzz/widgets/transcription_tasks_table_widget.py:107
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Task"
msgstr "Uzdevums"
-#: buzz/widgets/transcription_tasks_table_widget.py:116
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Status"
msgstr "Statuss"
-#: buzz/widgets/transcription_tasks_table_widget.py:124
-msgid "Date Added"
-msgstr "Pievienots"
-
-#: buzz/widgets/transcription_tasks_table_widget.py:135
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Date Completed"
msgstr "Pabeigts"
-#: buzz/widgets/recording_transcriber_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "Pievienots"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "Piezīmes"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "Atjaunot kolonas"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "Sāk atpazīšanu"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "Pārddēvēt"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "Rediģēt piezīmes"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "Pārdēvēt"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "Ievadiet jauno nosaukumu šim atpazīšanas ierakstam:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "Ievadiet noderīgas piezīmēs par šo ierakstu:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "Neizdodas sākt"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr "Atkārtoti sākt var tikai kļūdainus vai atceltus ierakstus."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "Neizdevās sākt atpazīšanu: {}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+"Neizdevās sākt atpazīšanu: modelis nav pieejams un to nevar lejupielādēt."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr "Neizdevās sākt atpazīšanu: Kļūda lietotnē, pārstartējiet."
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Live Recording"
msgstr "Dzīvā ierakstīšana"
-#: buzz/widgets/recording_transcriber_widget.py:144
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Click Record to begin..."
msgstr "Klikšķiniet Ierakstīt, lai sāktu..."
-#: buzz/widgets/recording_transcriber_widget.py:147
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Waiting for AI translation..."
msgstr "Gaida MI tulkojumu..."
-#: buzz/widgets/recording_transcriber_widget.py:159
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Microphone:"
msgstr "Mikrofons:"
-#: buzz/widgets/recording_transcriber_widget.py:523
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "Rādīt jaunā logā"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "Teksta izmērs:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "Stils"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "Gaišais"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "Tumšais"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "Pielāgots"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "Teksta krāsa"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "Fona krāsa"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "Pilnekrāns"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "Kopēt"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "Kopēt tekstu starpliktuvē"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "Nav nekā ko kopēt!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "Kopešana neizdevās"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "Nokopēts!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "Izvēlieties teksta krāsu"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "Izvēlieties fona krāsu"
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "An error occurred while starting a new recording:"
msgstr "Sākot jaunu ierakstu notikusi kļūda:"
-#: buzz/widgets/recording_transcriber_widget.py:527
+#: buzz/widgets/recording_transcriber_widget.py
msgid ""
"Please check your audio devices or check the application logs for more "
"information."
@@ -417,134 +738,403 @@ msgstr ""
"Lūdzu pārbaudiet savas audio ierīces vai pārbaudiet lietotnes ziņojumu "
"žurnālus, lai iegūtu papildu informāciju."
-#: buzz/widgets/about_dialog.py:80
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "Pieejama jauna Buzz versija!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "Instalētā versija:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "Jaunā versija:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "Jaunās versijas piezīmes:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "Lejupielādēt un instalēt"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "Jūsu datoram nav pieejama atjauninājum versija."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "Lejupielādē {} no {}..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "Lejupielādē {} no {} ({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "Lejupielāde neizdevās"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "Neizdevās lejupielādēt atjauninājumu: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "Neizdevās saglabāt atjauninājumu: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "Lejupielāde pabeigta!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "Neizdevās sākt atjauninājumu: {}"
+
+#: buzz/widgets/about_dialog.py
msgid "Check for updates"
msgstr "Pārbaudīt atjauninājumus"
-#: buzz/widgets/about_dialog.py:109
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "Parādīt sistēmas žurnālu"
+
+#: buzz/widgets/about_dialog.py
msgid "You're up to date!"
msgstr "Jums ir jaunākā versija!"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:93
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "Vidējais skaļums"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "Rinda"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "Start"
msgstr "Sākums"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:94
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "End"
msgstr "Beigas"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:95
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:34
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:30
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text"
msgstr "Teksts"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:96
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:40
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:31
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:64
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Translation"
msgstr "Tulkojums"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:26
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "View"
msgstr "Skats"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:46
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "Timestamps"
msgstr "Laiks"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:156
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Export"
msgstr "Eksportēt"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:170
-#: buzz/transcriber/transcriber.py:24
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Translate"
msgstr "Tulkot"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:180
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Resize"
msgstr "Mainīt garumu"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:279
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "Noteikt runātājus"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "Meklēt"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "Rādīt/Slēpt meklēšanas joslu (Ctrl+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "Meklēt:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "Ievadiet meklējamo..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "Iepriekšējais rezultāts (Shift+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "Nākamais rezultāts (Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "Notīrīt"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "Atskaņošana:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "Atkārtot segmentu"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr "Nosaka vai atkārtot izvēlēto segmentu"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "Sekot audio"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+"Nosaka vai atskaņojot audio iezīmētajam segmentam vajadzētu automātiski "
+"sekot tam kas tiek atskaņots."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "Pāriet uz tekošo"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "Pāriet uz šobrīd atskaņojamo tesktu"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "1 no 100+ "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "1 no "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr " "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "Nekas nav atrasts"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr " no 100+"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr " no "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "API Key Required"
msgstr "API atslēgas kļūda"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:280
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Please enter OpenAI API Key in preferences"
msgstr "Lūdzu ievadiet OpenAI API atslēgu iestatījumos"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:297
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "Pagarināt beigu laiku"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "Palielināt beigu laiku par (sekundes)"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "Palielināt"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "Garuma maiņas iestatījumi"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Desired subtitle length"
msgstr "Vēlamais teksta garums"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:298
-msgid "Enter target characters per subtitle:"
-msgstr "Ievadiet vēlamo simbolu skaitu tekstā:"
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
+msgstr "Pieejami tikai, ierakstiem, kas atpazīti bez dalīšanas pa vārdiem"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:78
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "Apvienošanas iestatījumi"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "Apvienot pēc attāluma"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "Dalīt pie pieturzīmēm"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "Dalīt pie maksimālā garuma"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "Apvienot"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr "Pieejami tikai, ierakstiem, kas atpazīti ar dalīšanu pa vārdiem"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr ""
+"Runātāju noteikšana nav pieejama, neizdevās ielādēt nepieciešamās "
+"bibliotēkas."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 Apkopo transkripcijas"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 Ielādē audio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 Ielādē identifikācijas modeli"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr "3/8 Ielādē identifikācijas modeli (atkārto...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+"Neizdevās ielādēt modeli. Lūdzu pārbaidiet savu interneta savienojumu un "
+"mēģiniet vēlreiz."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 Apstrādā audio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 Sagatavo transkripcijas"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 Nosaka runātājus"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 Marķē runātāju teikumus"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 Runātāju noteikšana pabeigta"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 Kļūda nosakot runātājus"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "1. solis: Runātāju noteikšana"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "Noteikt"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "Gatavs noteikt runātājus"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "Audio datne nav atrasta"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "2. solis: Runātāju identifikācija"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "Atskaņot paraugu"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "Apvienot secīgus runātāja teikumus"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "Saglabāt"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "Atceļ..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "Atcelts"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Save File"
msgstr "Saglabāt failu"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:80
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text files"
msgstr "Teksta faili"
-#: buzz/widgets/snap_notice.py:9
-msgid "Snap permission notice"
-msgstr "Snap atļauju piezīme"
-
-#: buzz/widgets/snap_notice.py:13
-msgid ""
-"Detected missing permissions, please check that snap permissions have been "
-"granted"
-msgstr ""
-"Ne visi nepieciešamie moduļi darbojas korekti, iespējams nav piešķirtas snap "
-"atļaujas"
-
-#: buzz/widgets/snap_notice.py:16
-msgid ""
-"To enable necessary permissions run the following commands in the terminal"
-msgstr "Lai piešķirtu nepieciešamās atļaujas izpildiet šīs komandas"
-
-#: buzz/widgets/snap_notice.py:30
-msgid "Close"
-msgstr "Aizvērt"
-
-#: buzz/widgets/model_download_progress_dialog.py:36
+#: buzz/widgets/model_download_progress_dialog.py
msgid "Downloading model"
msgstr "Lejupielādē modeli"
-#: buzz/widgets/model_download_progress_dialog.py:37
+#: buzz/widgets/model_download_progress_dialog.py
msgid "remaining"
msgstr "..."
-#: buzz/widgets/menu_bar.py:38
+#: buzz/widgets/menu_bar.py
msgid "Import File..."
msgstr "Importēt failu..."
-#: buzz/widgets/menu_bar.py:41
+#: buzz/widgets/menu_bar.py
msgid "Import URL..."
msgstr "Importēt URL..."
-#: buzz/widgets/menu_bar.py:44
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "Importēt mapi..."
+
+#: buzz/widgets/menu_bar.py
msgid "About"
msgstr "Par"
-#: buzz/widgets/menu_bar.py:48
+#: buzz/widgets/menu_bar.py
msgid "Preferences..."
msgstr "Iestatījumi..."
-#: buzz/widgets/menu_bar.py:51 buzz/widgets/menu_bar.py:61
+#: buzz/widgets/menu_bar.py
msgid "Help"
msgstr "Palīdzība"
-#: buzz/widgets/menu_bar.py:57
+#: buzz/widgets/menu_bar.py
msgid "File"
msgstr "Fails"
-#: buzz/widgets/main_window.py:227
+#: buzz/widgets/main_window.py
msgid ""
"Are you sure you want to delete the selected transcription(s)? This action "
"cannot be undone."
@@ -552,54 +1142,531 @@ msgstr ""
"Vai tiešām vēlaties dzēst izvēlētos transkriptus? Šī ir neatgriezeniska "
"darbība."
-#: buzz/widgets/main_window.py:255
+#: buzz/widgets/main_window.py
msgid "Select audio file"
msgstr "Izvēlieties audio failu"
-#: buzz/widgets/main_window.py:291
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "Izvēlieties mapi"
+
+#: buzz/widgets/main_window.py
msgid "Unable to save OpenAI API key to keyring"
msgstr "Neizdevās saglabāt OpenAI API atslēgu atslēgu saišķī"
-#: buzz/transcriber/transcriber.py:25
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr ""
+"Whisper serverim neizdevās ieslēgties. Lūdzu pārbaudiet lietotnes žurnāla "
+"ierakstus."
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"Whisper serverim neizdevās ieslēgties, jo nepietika atmiņas. Lūdzu mēģiniet "
+"vēlreiz ar mazāku modeli. Lai izmantotu tikai CPU iestatiet "
+"BUZZ_FORCE_CPU=TRUE vides mainīgo."
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "Tulkot angliski"
+
+#: buzz/transcriber/transcriber.py
msgid "Transcribe"
msgstr "Atpazīt"
-#: buzz/model_loader.py:532
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "Ķīniešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "Krievu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "Korejiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "Franču"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "Portugāļu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "Turku"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "Arābu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "Zviedru"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "Indonēziešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "Hindi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "Somu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "Vjetnamiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "Ebreju"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "Grieķu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "Malajiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "Čehu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "Rumāņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "Ungāru"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "Tamilu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "Norvēģu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "Taju"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "Urdu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "Horvātu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "Bulgāru"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "Lietuviešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "Latīņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "Maori"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "Malajalu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "Velsiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "Slovāku"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "Telugu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "Persiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "Bengāļu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "Serbu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "Azerbaidžāņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "Slovēņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "Kannada"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "Igauņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "Maķedoniešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "Bretoņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "Basku"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "Islandiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "Armēņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "Nepāliešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "Mongoļu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "Bosniešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "Kazahu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "Albaņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "Svahili"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "Galisiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "Maratu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "Pandžabu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "Singalu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "Khmeru"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "Shona"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "Joruba"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "Somāliešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "Afrikāņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "Okitāņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "Gruzīnu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "Baltkrievu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "Tadžiku"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "Sindhu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "Gudžaratu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "Amharu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "Jidiša"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "Laosiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "Uzbeku"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "Fēru"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "Haiti kreoliešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "Puštu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "Turkmēņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "Nynorsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "Maltiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "Sanskrita"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "Luksemburgu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "Mjanmas"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "Tibetiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "Tagalogu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "Malagasu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "Asamiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "Tatāru"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "Havajiešu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "Lingalu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "Hausu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "Baškīru"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "Japāņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "Sundāņu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "Kantonas"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
msgid "A connection error occurred"
msgstr "Notika savienojuma kļūda"
-#: buzz/settings/shortcut.py:17
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "Palaiž Whisper.cpp..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "Sāk atpazīšanu..."
+
+#: buzz/settings/shortcut.py
msgid "Open Record Window"
msgstr "Atvērt ieraksta logu"
-#: buzz/settings/shortcut.py:18
+#: buzz/settings/shortcut.py
msgid "Import File"
msgstr "Importēt failu"
-#: buzz/settings/shortcut.py:20
+#: buzz/settings/shortcut.py
msgid "Open Preferences Window"
msgstr "Atvērt iestatījumu logu"
-#: buzz/settings/shortcut.py:22
+#: buzz/settings/shortcut.py
msgid "View Transcript Text"
msgstr "Aplūkot atpazīto tekstu"
-#: buzz/settings/shortcut.py:23
+#: buzz/settings/shortcut.py
msgid "View Transcript Translation"
msgstr "Aplūkot tulkojumu"
-#: buzz/settings/shortcut.py:24
+#: buzz/settings/shortcut.py
msgid "View Transcript Timestamps"
msgstr "Aplūkot atpazīšanas laikus"
-#: buzz/settings/recording_transcriber_mode.py:5
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "Meklēt tekstā"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "Pāriet uz nākamo meklēšanas rezultātu"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "Pāriet uz iepriekšējo meklēšanas rezultātu"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "Pāriet uz atskaņojamo tesktu"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "Atskaņot/Apturēt audio"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "Atskaņot segmentu no sākuma"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "Pārslēgt atskaņošanas iespējas"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "Samazināt segmenta sākuma laiku"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "Palielināt segmenta sākuma laiku"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "Samazināt segmenta beigu laiku"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "Palielināt segmenta beigu laiku"
+
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append below"
msgstr "Jaunie teikumi apakšā"
-#: buzz/settings/recording_transcriber_mode.py:6
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append above"
msgstr "Jaunie teikumi augšā"
-#: buzz/settings/recording_transcriber_mode.py:7
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append and correct"
msgstr "Papildināt un labot esošo"
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
+msgstr ""
+"Runas atdalīšana neizdevās! Pārbaudiet interneta savienojumu, iespējams "
+"jālejupielādē modelis."
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "Atdalīti ar komatu, piemēram, \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+
+#~ msgid "Temperature:"
+#~ msgstr "Temperatūra:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr "Lūdzu, iztulko katru tev atsūtīto tekstu no angļu valodas latviski."
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "Kļūda tulkojot, skatiet sistēmas žurnālu!"
+
+#~ msgid "Snap permission notice"
+#~ msgstr "Snap atļauju piezīme"
+
+#~ msgid ""
+#~ "Detected missing permissions, please check that snap permissions have "
+#~ "been granted"
+#~ msgstr ""
+#~ "Ne visi nepieciešamie moduļi darbojas korekti, iespējams nav piešķirtas "
+#~ "snap atļaujas"
+
+#~ msgid ""
+#~ "To enable necessary permissions run the following commands in the terminal"
+#~ msgstr "Lai piešķirtu nepieciešamās atļaujas izpildiet šīs komandas"
+
+#~ msgid "Close"
+#~ msgstr "Aizvērt"
+
+#~ msgid "Enter instructions for AI on how to translate..."
+#~ msgstr "Ievadiet tulkošanas norādes mākslīgajam intelektam..."
+
+#~ msgid "Enter target characters per subtitle:"
+#~ msgstr "Ievadiet vēlamo simbolu skaitu tekstā:"
diff --git a/buzz/locale/nl/LC_MESSAGES/buzz.po b/buzz/locale/nl/LC_MESSAGES/buzz.po
new file mode 100644
index 00000000..4d09b2c1
--- /dev/null
+++ b/buzz/locale/nl/LC_MESSAGES/buzz.po
@@ -0,0 +1,1681 @@
+# Dutch translations for PACKAGE package
+# Nederlandse vertalingen voor het pakket PACKAGE.
+# Copyright (C) 2025 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# Automatically generated, 2025.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
+"PO-Revision-Date: 2025-03-20 18:30+0100\n"
+"Last-Translator: Heimen Stoffels \n"
+"Language-Team: none\n"
+"Language: nl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 3.5\n"
+
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
+msgid "Import URL"
+msgstr "Url importeren"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "https://example.com/audio.mp3"
+msgstr "https://voorbeeld.nl/audio.mp3"
+
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
+msgid "Ok"
+msgstr "Oké"
+
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
+msgid "Cancel"
+msgstr "Annuleren"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "URL:"
+msgstr "Url:"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "Invalid URL"
+msgstr "Ongeldige url"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "The URL you entered is invalid."
+msgstr "De ingevoerde url is ongeldig."
+
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "Live transcriptie presenteren"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
+msgid "Reset to Defaults"
+msgstr "Standaardwaarden"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "Engels"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "Catalaans"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "Deens"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "Nederlands"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "Duits"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "Spaans"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "Italiaans"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "Japans"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "Lets"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "Pools"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "Portugees (Brazilië)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "Oekraïens"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "Chinees (Vereenvoudigd)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "Chinees (Traditioneel)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "Herstart vereist!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "Programmataal"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Font Size"
+msgstr "Tekstgrootte"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Test"
+msgstr "Uitproberen"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API key"
+msgstr "OpenAI-api-sleutel"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI base url"
+msgstr "OpenAI-hoofd-url"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "OpenAI-api-model"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Default export file name"
+msgstr "Standaardnaam van export"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Enable live recording transcription export"
+msgstr "Transcripties van opnames onmiddelijk exporteren"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Browse"
+msgstr "Bladeren"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Export folder"
+msgstr "Exportmap"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Live recording mode"
+msgstr "Live-opnamemodus"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
+msgstr ""
+"Opmerking: de exportinstellingen voor live-opnames worden in een toekomstige "
+"versie verplaatst naar de geavanceerde instellingen in het scherm Live-"
+"opname."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "8-bits kwantisering gebruiken om geheugengebruik te verminderen"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"Van toepassing op Huggingface- en Faster Whisper-modellen. Vermindert het "
+"GPU-geheugengebruik, maar kan de transcriptiekwaliteit licht verminderen."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "GPU-geheugen verminderen"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "Alleen CPU gebruiken en GPU-versnelling uitschakelen"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+"Gebruik dit als grotere modellen niet in het GPU-geheugen passen en Buzz "
+"crasht"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "GPU uitschakelen"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API Key Test"
+msgstr "OpenAI-api-sleuteltest"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Your API key is valid. Buzz will use this key to perform Whisper API "
+"transcriptions and AI translations."
+msgstr ""
+"De api-sleutel is geldig. Buzz zal deze sleutel gebruiken om transcripties "
+"en AI-vertalingen op te vragen bij Whisper."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Invalid API key"
+msgstr "Ongeldige api-sleutel"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
+msgstr ""
+"De api ondersteunt alleen base64-tekens (A–Za–z0–9+/=_-). Andere tekens "
+"kunnen problemen veroorzaken."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Select Export Folder"
+msgstr "Kies een exportmap"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"OpenAI API returned invalid response. Please check the API url or your key. "
+"Transcription and translation may still work if the API does not support key "
+"validation."
+msgstr ""
+"De api gaf een ongeldig antwoord terug. Controleer de url of sleutel. "
+"Transcriptie en vertaling werkt mogelijk nog steeds als de api niet om "
+"sleutelverificatie vraagt."
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Enable folder watch"
+msgstr "Map bijhouden"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "Verwerkte bestanden verwijderen"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Input folder"
+msgstr "Invoermap"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Output folder"
+msgstr "Uitvoermap"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Select Input Folder"
+msgstr "Kies een invoermap"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Select Output Folder"
+msgstr "Kies een uitvoermap"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Preferences"
+msgstr "Instellingen"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "General"
+msgstr "Algemeen"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Models"
+msgstr "Modellen"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Shortcuts"
+msgstr "Sneltoetsen"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Folder Watch"
+msgstr "Map bijhouden"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Group"
+msgstr "Groep"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Huggingface ID of a Faster whisper model"
+msgstr "Huggingface-id of een sneller Whisper-model"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download"
+msgstr "Downloaden"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Show file location"
+msgstr "Bestandslocatie tonen"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Delete"
+msgstr "Verwijderen"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Downloaded"
+msgstr "Gedownload"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Available for Download"
+msgstr "Beschikbaar"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download link to Whisper.cpp ggml model file"
+msgstr "Downloadlink van Whisper.cpp ggml-modelbestand"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Delete Model"
+msgstr "Model verwijderen"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Are you sure you want to delete the selected model?"
+msgstr "Weet u zeker dat u het gekozen model wilt verwijderen?"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download failed"
+msgstr "Het downloaden is mislukt"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
+msgid "Error"
+msgstr "Foutmelding"
+
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
+msgid "Record"
+msgstr "Opnemen"
+
+#: buzz/widgets/record_button.py
+msgid "Stop"
+msgstr "Stoppen"
+
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
+msgid "Detect Language"
+msgstr "Taal herkennen"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "bijv. nld, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"Voer een ISO 639-3-taalcode in (3 letters).\n"
+"Voorbeelden: nld (Nederlands), fra (Frans), deu (Duits),\n"
+"spa (Spaans), lav (Lets)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
+msgid "Run"
+msgstr "Uitvoeren"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Model:"
+msgstr "Model:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "First time use of a model may take up to several minutest to load."
+msgstr ""
+"Let op: de eerste keer kan het enkele minuten duren voordat het model "
+"geladen is."
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Api Key:"
+msgstr "Api-sleutel:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Task:"
+msgstr "Taak:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Language:"
+msgstr "Taal:"
+
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
+msgid "Enter prompt..."
+msgstr "Voer een tekst in…"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Advanced Settings"
+msgstr "Geavanceerde instellingen"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Speech recognition settings"
+msgstr "Spraakherkenningsinstellingen"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Initial Prompt:"
+msgstr "Hoofdinvoer:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Translation settings"
+msgstr "Vertaalinstellingen"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable AI translation"
+msgstr "AI-vertaling inschakelen"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "AI model:"
+msgstr "AI-model:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
+msgstr ""
+"Vertaal elke tekst die naar u wordt gestuurd van het Engels naar het Spaans. "
+"De vertaling wordt gebruikt in een geautomatiseerd systeem. Voeg geen "
+"opmerkingen of notities toe, alleen de vertaling."
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Instructions for AI:"
+msgstr "AI-instructies:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "Opname-instellingen"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "Stiltedrempel:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "Live-opnamemodus:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "Regelscheidingsteken:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "Transcriptiestap:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "Verberg onbevestigd"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "Live-opname exporteren inschakelen"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "Exportmap:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "Exportbestandsnaam:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "Tekstbestand (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "Exportbestandstype:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"Exportitems beperken\n"
+"(0 = alles exporteren):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Word-level timings"
+msgstr "Woordherkenningstimings"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "Spraak extraheren"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Export:"
+msgstr "Exporteren:"
+
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
+msgid "Huggingface ID of a model"
+msgstr "Huggingface-id van een model"
+
+#: buzz/widgets/transcriber/advanced_settings_button.py
+msgid "Advanced..."
+msgstr "Geavanceerd…"
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "Nieuwe bestandstranscriptie"
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "Nieuwe url-transcriptie"
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "Open Transcript"
+msgstr "Transcriptie openen"
+
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
+msgid "Cancel Transcription"
+msgstr "Transcriptie wissen"
+
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
+msgid "Clear History"
+msgstr "Geschiedenis wissen"
+
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "Update Beschikbaar"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "In Progress"
+msgstr "In behandeling"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Completed"
+msgstr "Afgerond"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed"
+msgstr "Mislukt"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Canceled"
+msgstr "Afgebroken"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Queued"
+msgstr "In wachtrij"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "File Name / URL"
+msgstr "Bestandsnaam/Url"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Model"
+msgstr "Model"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Task"
+msgstr "Taak"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Status"
+msgstr "Status"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Completed"
+msgstr "Afgerond op"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "Toegevoegd op"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "Notities"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "Kolomvolgorde herstellen"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "Transcriptie opnieuw starten"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "Hernoemen"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "Notities toevoegen/bewerken"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "Transcriptie hernoemen"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "Voer een nieuwe naam in:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "Voer relevante notities in voor deze transcriptie:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "Kan niet opnieuw starten"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr ""
+"Alleen mislukte of afgebroken transcripties kunnen opnieuw worden gestart."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "Transcriptie opnieuw starten mislukt: {}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+"Transcriptie kon niet opnieuw worden gestart: model niet beschikbaar en kon "
+"niet worden gedownload."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr ""
+"Transcriptie kon niet opnieuw worden gestart: transcriptieproces niet "
+"gevonden."
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Live Recording"
+msgstr "Live-opname"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Click Record to begin..."
+msgstr "Klik op de opnameknop om te beginnen…"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Waiting for AI translation..."
+msgstr "Bezig met wachten op AI-vertaling…"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Microphone:"
+msgstr "Microfoon:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "In nieuw venster tonen"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "Tekstgrootte:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "Thema"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "Licht"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "Donker"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "Aangepast"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "Tekstkleur"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "Achtergrondkleur"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "Volledig scherm"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "Kopiëren"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "Transcriptie naar klembord kopiëren"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "Niets om te kopiëren!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "Kopiëren mislukt"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "Gekopieerd!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "Kies een tekstkleur"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "Kies een achtergrondkleur"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "An error occurred while starting a new recording:"
+msgstr "Er is een fout opgetreden tijdens het starten van de opname:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid ""
+"Please check your audio devices or check the application logs for more "
+"information."
+msgstr "Controleer uw geluidsapparatuur of het programmalogboek."
+
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "Er is een nieuwe versie van Buzz beschikbaar!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "Huidige versie:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "Versie:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "Release-opmerkingen:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "Downloaden en installeren"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "Geen download-URL beschikbaar voor uw platform."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "Bestand {} van {} downloaden..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "Bestand {} van {} downloaden ({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "Download mislukt"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "Het downloaden van de update is mislukt: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "Kan het installatieprogramma niet opslaan: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "Download voltooid!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "Kan het installatieprogramma niet uitvoeren: {}"
+
+#: buzz/widgets/about_dialog.py
+msgid "Check for updates"
+msgstr "Controleren op updates"
+
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "Logboeken tonen"
+
+#: buzz/widgets/about_dialog.py
+msgid "You're up to date!"
+msgstr "De software is actueel!"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "Gemiddeld volume"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "Wachtrij"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+msgid "Start"
+msgstr "Begin"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+msgid "End"
+msgstr "Einde"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Text"
+msgstr "Tekst"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Translation"
+msgstr "Vertaling"
+
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+msgid "View"
+msgstr "Bekijken"
+
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+msgid "Timestamps"
+msgstr "Tijdstippen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Export"
+msgstr "Exporteren"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Translate"
+msgstr "Vertalen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize"
+msgstr "Grootte"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "Sprekers identificeren"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "Zoeken"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "Zoekbalk tonen/verbergen (Ctrl+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "Zoeken:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "Voer te zoeken tekst in…"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "Vorige overeenkomst (Shift+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "Volgende overeenkomst (Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "Wissen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "Afspeelbediening:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "Fragment herhalen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr "Herhaling in- of uitschakelen bij het klikken op transcriptfragmenten"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "Audio volgen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+"De huidige audiopositie in de transcriptie in- of uitschakelen. Wanneer "
+"ingeschakeld, wordt automatisch naar de huidige tekst gescrold."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "Naar huidig fragment scrollen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "Naar de momenteel gesproken tekst scrollen"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "1 van 100+ overeenkomsten"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "1 van "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr " overeenkomsten"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "Geen overeenkomsten gevonden"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr " van 100+ overeenkomsten"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr " van "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "API Key Required"
+msgstr "Api-sleutel vereist"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Please enter OpenAI API Key in preferences"
+msgstr "Voer de OpenAI-api-sleutel in in de instellingen"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "Eindtijd verlengen"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "Eindes verlengen met maximaal (seconden)"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "Eindes verlengen"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "Grootteopties"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Desired subtitle length"
+msgstr "Voorkeurslengte van ondertiteling"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
+msgstr ""
+"Alleen beschikbaar als timings op woordniveau zijn uitgeschakeld tijdens "
+"transcriptie"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "Samenvoegopties"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "Samenvoegen op basis van tussenruimte"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "Splitsen op basis van leestekens"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "Splitsen op basis van max. lengte"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "Samenvoegen"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr ""
+"Alleen beschikbaar als timings op woordniveau zijn ingeschakeld tijdens "
+"transcriptie"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr ""
+"Sprekeridentificatie is niet beschikbaar: het laden van de vereiste "
+"bibliotheken is mislukt."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 Transcripties verzamelen"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 Audio laden"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 Uitlijningsmodel laden"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr "3/8 Uitlijningsmodel laden (opnieuw proberen met cache…)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+"Het laden van het uitlijningsmodel is mislukt. Controleer uw "
+"internetverbinding en probeer het opnieuw."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 Audio verwerken"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 Transcripties voorbereiden"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 Sprekers identificeren"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 Sprekers koppelen aan transcripties"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 Identificatie voltooid"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 Fout bij het identificeren van sprekers"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "Stap 1: Sprekers identificeren"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "Identificeren"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "Klaar om sprekers te identificeren"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "Audiobestand niet gevonden"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "Stap 2: Sprekers een naam geven"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "Fragment afspelen"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "Zinnen van sprekers samenvoegen"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "Opslaan"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "Bezig met annuleren…"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "Afgebroken"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Save File"
+msgstr "Bestand opslaan"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Text files"
+msgstr "Tekstbestanden"
+
+#: buzz/widgets/model_download_progress_dialog.py
+msgid "Downloading model"
+msgstr "Bezig met ophalen van model…"
+
+#: buzz/widgets/model_download_progress_dialog.py
+msgid "remaining"
+msgstr "resterend"
+
+#: buzz/widgets/menu_bar.py
+msgid "Import File..."
+msgstr "Bestand importeren…"
+
+#: buzz/widgets/menu_bar.py
+msgid "Import URL..."
+msgstr "Url importeren…"
+
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "Map importeren…"
+
+#: buzz/widgets/menu_bar.py
+msgid "About"
+msgstr "Over"
+
+#: buzz/widgets/menu_bar.py
+msgid "Preferences..."
+msgstr "Instellingen…"
+
+#: buzz/widgets/menu_bar.py
+msgid "Help"
+msgstr "Hulp"
+
+#: buzz/widgets/menu_bar.py
+msgid "File"
+msgstr "Bestand"
+
+#: buzz/widgets/main_window.py
+msgid ""
+"Are you sure you want to delete the selected transcription(s)? This action "
+"cannot be undone."
+msgstr ""
+"Weet u zeker dat u de gekozen transcriptie(s) wilt verwijderen? Deze actie "
+"is onomkeerbaar."
+
+#: buzz/widgets/main_window.py
+msgid "Select audio file"
+msgstr "Kies een audiobestand"
+
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "Kies een invoermap"
+
+#: buzz/widgets/main_window.py
+msgid "Unable to save OpenAI API key to keyring"
+msgstr "De OpenAI-api-sleutel kan niet worden bewaard in de sleutelbos"
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr ""
+"De Whisper-server kon niet worden gestart. Raadpleeg de logboeken voor meer "
+"informatie."
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"De Whisper-server kon niet worden gestart wegens onvoldoende geheugen. "
+"Probeer het opnieuw met een kleiner model. Gebruik de omgevingsvariabele "
+"BUZZ_FORCE_CPU=TRUE om CPU-modus te forceren."
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "Naar het Engels vertalen"
+
+#: buzz/transcriber/transcriber.py
+msgid "Transcribe"
+msgstr "Transcriberen"
+
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "Chinees"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "Russisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "Koreaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "Frans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "Portugees"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "Turks"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "Arabisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "Zweeds"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "Indonesisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "Hindi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "Fins"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "Vietnamees"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "Hebreeuws"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "Grieks"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "Maleis"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "Tsjechisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "Roemeens"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "Hongaars"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "Tamil"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "Noors"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "Thai"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "Urdu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "Kroatisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "Bulgaars"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "Litouws"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "Latijn"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "Maori"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "Malayalam"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "Welsh"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "Slowaaks"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "Telugu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "Perzisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "Bengaals"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "Servisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "Azerbeidzjaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "Sloveens"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "Kannada"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "Ests"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "Macedonisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "Bretons"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "Baskisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "IJslands"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "Armeens"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "Nepalees"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "Mongools"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "Bosnisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "Kazachs"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "Albanees"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "Swahili"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "Galicisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "Marathi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "Punjabi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "Singalees"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "Khmer"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "Shona"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "Yoruba"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "Somalisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "Afrikaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "Occitaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "Georgisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "Belarussisch (Wit-Russisch)"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "Tadzjieks"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "Gujarati"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "Amhaars"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "Jiddisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "Laotiaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "Oezbeeks"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "Faeröers"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "Haïtiaans-Creools"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "Pashto"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "Turkmeens"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "Nynorsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "Maltees"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "Sanskriet"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "Luxemburgs"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "Myanmar"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "Tibetaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "Tagalog"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "Malagassisch"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "Assamees"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "Tataars"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "Hawaïaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "Lingala"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "Hausa"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "Bashkir"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "Javaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "Soedanees"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "Kantonees"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
+msgid "A connection error occurred"
+msgstr "Er is een verbindingsfout opgetreden"
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "Whisper.cpp wordt gestart…"
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "Transcriptie wordt gestart…"
+
+#: buzz/settings/shortcut.py
+msgid "Open Record Window"
+msgstr "Opnamevenster openen"
+
+#: buzz/settings/shortcut.py
+msgid "Import File"
+msgstr "Bestand importeren"
+
+#: buzz/settings/shortcut.py
+msgid "Open Preferences Window"
+msgstr "Instellingenvenster openen"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Text"
+msgstr "Transcriptie bekijken"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Translation"
+msgstr "Getranscribeerde vertaling bekijken"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Timestamps"
+msgstr "Getranscribeerde tijdstippen bekijken"
+
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "Transcriptie doorzoeken"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "Naar volgend zoekresultaat in transcriptie gaan"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "Naar vorig zoekresultaat in transcriptie gaan"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "Naar huidige tekst scrollen"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "Audio afspelen/pauzeren"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "Huidig fragment opnieuw afspelen"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "Afspeelbediening in-/uitschakelen"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "Begintijd van fragment verkleinen"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "Begintijd van fragment vergroten"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "Eindtijd van fragment verkleinen"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "Eindtijd van fragment vergroten"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append below"
+msgstr "Onderaan toevoegen"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append above"
+msgstr "Bovenaan toevoegen"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append and correct"
+msgstr "Toevoegen en corrigeren"
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
+msgstr ""
+"Spraakextractie mislukt! Controleer uw internetverbinding — mogelijk moet er "
+"een model worden gedownload."
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "Kommagescheiden, bijv. '0.0, 0.2, 0.4, 0.6, 0.8, 1.0'"
+
+#~ msgid "Temperature:"
+#~ msgstr "Temperatuur:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr ""
+#~ "Vertaal elke tekst die naar u wordt verzonden van het Engels naar het "
+#~ "Spaans."
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "Vertaalfout, raadpleeg de logboeken!"
+
+#~ msgid "Snap permission notice"
+#~ msgstr "Snap-rechten"
+
+#~ msgid ""
+#~ "Detected missing permissions, please check that snap permissions have "
+#~ "been granted"
+#~ msgstr ""
+#~ "Er ontbreken toegangsrechten - controleer of ze daadwerkelijk allemaal "
+#~ "zijn toegekend"
+
+#~ msgid ""
+#~ "To enable necessary permissions run the following commands in the terminal"
+#~ msgstr ""
+#~ "De rechten kunnen met behulp van deze terminalopdrachten worden verleend"
+
+#~ msgid "Close"
+#~ msgstr "Sluiten"
+
+#~ msgid "Enter instructions for AI on how to translate..."
+#~ msgstr "Voer vertaalinstructies in…"
diff --git a/buzz/locale/pl_PL/LC_MESSAGES/buzz.po b/buzz/locale/pl_PL/LC_MESSAGES/buzz.po
index 227b1daf..251a1264 100644
--- a/buzz/locale/pl_PL/LC_MESSAGES/buzz.po
+++ b/buzz/locale/pl_PL/LC_MESSAGES/buzz.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-11-03 08:32+0200\n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
"PO-Revision-Date: 2024-03-17 20:50+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -17,402 +17,722 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.2.2\n"
-#: buzz/widgets/import_url_dialog.py:19 buzz/settings/shortcut.py:19
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
msgid "Import URL"
msgstr "Importuj URL"
-#: buzz/widgets/import_url_dialog.py:22
+#: buzz/widgets/import_url_dialog.py
msgid "https://example.com/audio.mp3"
msgstr "https://przyklad.pl/audio.mp3"
-#: buzz/widgets/import_url_dialog.py:28
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:69
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:245
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:97
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:295
-#: buzz/widgets/main_window.py:234
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
msgid "Ok"
-msgstr ""
+msgstr "OK"
-#: buzz/widgets/import_url_dialog.py:29
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:70
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:246
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:296
-#: buzz/widgets/model_download_progress_dialog.py:29
-#: buzz/widgets/main_window.py:235
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
msgid "Cancel"
msgstr "Anuluj"
-#: buzz/widgets/import_url_dialog.py:34
+#: buzz/widgets/import_url_dialog.py
msgid "URL:"
msgstr "URL:"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "Invalid URL"
msgstr "Nieprawidłowy URL"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "The URL you entered is invalid."
msgstr "Wprowadzony URL nie jest prawidłowy"
-#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py:29
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "Prezentacja transkrypcji na żywo"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
msgid "Reset to Defaults"
-msgstr ""
+msgstr "Przywróć ustawienia domyślne"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:52
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "Angielski"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "Kataloński"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "Duński"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "Niderlandzki"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "Niemiecki"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "Hiszpański"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "Włoski"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "Japoński"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "Łotewski"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "Polski"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "Portugalski (Brazylia)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "Ukraiński"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "Chiński (uproszczony)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "Chiński (tradycyjny)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "Wymagane ponowne uruchomienie!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "Język interfejsu"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Font Size"
-msgstr ""
+msgstr "Rozmiar czcionki"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:61
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Test"
-msgstr ""
+msgstr "Testuj"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:67
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API key"
-msgstr ""
+msgstr "Klucz API OpenAI"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:80
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI base url"
-msgstr ""
+msgstr "Podstawowy adres URL OpenAI"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:89
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "Model API OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Default export file name"
-msgstr ""
+msgstr "Domyślna nazwa pliku eksportu"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Enable live recording transcription export"
-msgstr ""
+msgstr "Włącz eksport transkrypcji nagrania na żywo"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:101
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:47
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:50
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Browse"
-msgstr ""
+msgstr "Przeglądaj"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:120
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Export folder"
-msgstr ""
+msgstr "Folder eksportu"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:131
-#, fuzzy
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Live recording mode"
-msgstr "Nagrywanie na żywo"
+msgstr "Tryb nagrywania na żywo"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:156
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:162
-msgid "OpenAI API Key Test"
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
msgstr ""
+"Uwaga: Ustawienia eksportu nagrywania na żywo zostaną przeniesione do "
+"Ustawień zaawansowanych ekranu nagrywania na żywo w przyszłej wersji."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:157
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "Użyj kwantyzacji 8-bitowej, aby zmniejszyć zużycie pamięci"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"Dotyczy modeli Huggingface i Faster Whisper. Zmniejsza zużycie pamięci GPU, "
+"ale może nieznacznie obniżyć jakość transkrypcji."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "Zmniejsz pamięć RAM GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "Używaj tylko CPU i wyłącz akcelerację GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+"Ustaw to, jeśli większe modele nie mieszczą się w pamięci GPU i Buzz się "
+"zawiesza"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "Wyłącz GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API Key Test"
+msgstr "Test klucza API OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"Your API key is valid. Buzz will use this key to perform Whisper API "
"transcriptions and AI translations."
msgstr ""
+"Twój klucz API jest prawidłowy. Buzz użyje tego klucza do wykonywania "
+"transkrypcji przez Whisper API oraz tłumaczeń AI."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:173
-#, fuzzy
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Invalid API key"
-msgstr "Nieprawidłowy URL"
+msgstr "Nieprawidłowy klucz API"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:174
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
-"API supports only base64 characters (A-Za-z0-9+/=). Other characters in API "
-"key may cause errors."
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
msgstr ""
+"API obsługuje tylko znaki base64 (A-Za-z0-9+/=_-). Inne znaki w kluczu API "
+"mogą powodować błędy."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:192
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Select Export Folder"
-msgstr ""
+msgstr "Wybierz folder eksportu"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:244
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"OpenAI API returned invalid response. Please check the API url or your key. "
"Transcription and translation may still work if the API does not support key "
"validation."
msgstr ""
+"OpenAI API zwróciło nieprawidłową odpowiedź. Sprawdź adres URL API lub swój "
+"klucz. Transkrypcja i tłumaczenie mogą nadal działać, jeśli API nie "
+"obsługuje weryfikacji klucza."
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:42
-#, fuzzy
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Enable folder watch"
-msgstr "Przeglądanie folderu"
+msgstr "Włącz obserwację folderu"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "Usuń przetworzonych pliki"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Input folder"
-msgstr ""
+msgstr "Folder wejściowy"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Output folder"
-msgstr ""
+msgstr "Folder wyjściowy"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:105
-#, fuzzy
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Input Folder"
-msgstr "Wybierz plik audio"
+msgstr "Wybierz folder wejściowy"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:114
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Output Folder"
-msgstr ""
+msgstr "Wybierz folder wyjściowy"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:43
-#, fuzzy
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Preferences"
-msgstr "Ustawienia..."
+msgstr "Ustawienia"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:50
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "General"
msgstr "Główne"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:53
-#, fuzzy
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Models"
-msgstr "Model:"
+msgstr "Modele"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:57
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Shortcuts"
msgstr "Skróty"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:63
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Folder Watch"
msgstr "Przeglądanie folderu"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:70
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Group"
-msgstr ""
+msgstr "Grupa"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:82
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Huggingface ID of a Faster whisper model"
-msgstr ""
+msgstr "ID modelu Faster Whisper z Huggingface"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:94
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download"
msgstr "Pobierz"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:99
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Show file location"
msgstr "Pokaż lokalizacje pliku"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:107
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete"
msgstr "Usuń"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:138
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Downloaded"
msgstr "Pobrany"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:143
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Available for Download"
msgstr "Dostępne do pobrania"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:164
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download link to Whisper.cpp ggml model file"
-msgstr ""
+msgstr "Link do pobrania pliku modelu Whisper.cpp ggml"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:239
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete Model"
msgstr "Usuń model"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:240
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Are you sure you want to delete the selected model?"
-msgstr "Czy na pewno chcesz usunąć zaznaczoną transkrypcję?"
+msgstr "Czy na pewno chcesz usunąć wybrany model?"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:268
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download failed"
-msgstr "Pobrany"
+msgstr "Pobieranie nie powiodło się"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:269
-#: buzz/widgets/main_window.py:291 buzz/model_loader.py:503
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
msgid "Error"
msgstr "Błąd"
-#: buzz/widgets/record_button.py:10 buzz/widgets/record_button.py:17
-#: buzz/widgets/main_window_toolbar.py:35
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
msgid "Record"
msgstr "Nagraj"
-#: buzz/widgets/record_button.py:21
+#: buzz/widgets/record_button.py
msgid "Stop"
msgstr "Zatrzymaj"
-#: buzz/widgets/transcriber/languages_combo_box.py:35
-#: buzz/transcriber/transcriber.py:159
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
msgid "Detect Language"
msgstr "Wykryj język"
-#: buzz/widgets/transcriber/file_transcriber_widget.py:79
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "np. eng, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"Wprowadź kod języka ISO 639-3 (3 litery).\n"
+"Przykłady: eng (angielski), fra (francuski), deu (niemiecki),\n"
+"spa (hiszpański), lav (łotewski)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
msgid "Run"
msgstr "Rozpocznij"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:92
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Model:"
msgstr "Model:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:104
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
msgid "First time use of a model may take up to several minutest to load."
-msgstr ""
+msgstr "Pierwsze użycie modelu może potrwać kilka minut podczas ładowania."
-#: buzz/widgets/transcriber/transcription_options_group_box.py:113
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Api Key:"
-msgstr ""
+msgstr "Klucz API:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:114
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Task:"
msgstr "Zadanie:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:115
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Language:"
msgstr "Język:"
-#: buzz/widgets/transcriber/initial_prompt_text_edit.py:10
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
msgid "Enter prompt..."
-msgstr ""
+msgstr "Wprowadź instrukcje..."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:33
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Advanced Settings"
msgstr "Ustawienia zaawansowane"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:37
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Speech recognition settings"
-msgstr ""
+msgstr "Ustawienia rozpoznawania mowy"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:46
-msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-msgstr "Oddzielone przecinkiem, np. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:55
-msgid "Temperature:"
-msgstr "Temperatura:"
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:66
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Initial Prompt:"
msgstr "Wstępne instrukcje:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:68
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Translation settings"
-msgstr ""
+msgstr "Ustawienia tłumaczenia"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:72
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Enable AI translation"
-msgstr ""
+msgstr "Włącz tłumaczenie AI"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:84
-#, fuzzy
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "AI model:"
-msgstr "Model:"
+msgstr "Model AI:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:88
-msgid "Enter instructions for AI on how to translate..."
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
msgstr ""
+"Proszę przetłumaczyć każdy przesłany tekst z języka angielskiego na "
+"hiszpański. Tłumaczenie będzie używane w systemie automatycznym, dlatego "
+"prosimy nie dodawać żadnych komentarzy ani uwag, tylko samo tłumaczenie."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:92
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Instructions for AI:"
-msgstr ""
+msgstr "Instrukcje dla AI:"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:42
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "Ustawienia nagrywania"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "Próg ciszy:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "Tryb nagrywania na żywo:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "Separator wierszy:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "Krok transkrypcji:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "Ukryj niepotwierdzone"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "Włącz eksport nagrywania na żywo"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "Folder eksportu:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "Nazwa pliku eksportu:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "Plik tekstowy (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "Typ pliku eksportu:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"Ogranicz wpisy eksportu\n"
+"(0 = eksportuj wszystkie):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Word-level timings"
msgstr "Znaczniki dla słów"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:66
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "Wyodrębnij mowę"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Export:"
-msgstr ""
+msgstr "Eksportuj:"
-#: buzz/widgets/transcriber/hugging_face_search_line_edit.py:37
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
msgid "Huggingface ID of a model"
-msgstr ""
+msgstr "ID modelu z Huggingface"
-#: buzz/widgets/transcriber/advanced_settings_button.py:9
+#: buzz/widgets/transcriber/advanced_settings_button.py
msgid "Advanced..."
-msgstr ""
+msgstr "Zaawansowane..."
-#: buzz/widgets/main_window_toolbar.py:39
-msgid "New Transcription"
-msgstr "Nowa transkrypcja"
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "Nowa transkrypcja pliku"
-#: buzz/widgets/main_window_toolbar.py:46
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "Nowa transkrypcja z URL"
+
+#: buzz/widgets/main_window_toolbar.py
msgid "Open Transcript"
msgstr "Otwórz transkrypt"
-#: buzz/widgets/main_window_toolbar.py:52 buzz/settings/shortcut.py:27
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
msgid "Cancel Transcription"
msgstr "Anuluj transkrypcję"
-#: buzz/widgets/main_window_toolbar.py:60 buzz/widgets/main_window.py:223
-#: buzz/settings/shortcut.py:26
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
msgid "Clear History"
msgstr "Wyczyść historię"
-#: buzz/widgets/transcription_tasks_table_widget.py:64
-msgid "In Progress"
-msgstr ""
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "Dostępna aktualizacja"
-#: buzz/widgets/transcription_tasks_table_widget.py:67
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "In Progress"
+msgstr "W toku"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Completed"
msgstr "Ukończono"
-#: buzz/widgets/transcription_tasks_table_widget.py:74
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Failed"
-msgstr ""
+msgstr "Nie powiodło się"
-#: buzz/widgets/transcription_tasks_table_widget.py:77
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Canceled"
msgstr "Anulowano"
-#: buzz/widgets/transcription_tasks_table_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Queued"
msgstr "Kolejka"
-#: buzz/widgets/transcription_tasks_table_widget.py:86
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "File Name / URL"
-msgstr "Nazwa pliku"
+msgstr "Nazwa pliku / URL"
-#: buzz/widgets/transcription_tasks_table_widget.py:98
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Model"
-msgstr "Model:"
+msgstr "Model"
-#: buzz/widgets/transcription_tasks_table_widget.py:107
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Task"
-msgstr "Zadanie:"
+msgstr "Zadanie"
-#: buzz/widgets/transcription_tasks_table_widget.py:116
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Status"
msgstr "Status"
-#: buzz/widgets/transcription_tasks_table_widget.py:124
-msgid "Date Added"
-msgstr ""
-
-#: buzz/widgets/transcription_tasks_table_widget.py:135
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Date Completed"
-msgstr "Ukończono"
+msgstr "Data ukończenia"
-#: buzz/widgets/recording_transcriber_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "Data dodania"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "Notatki"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "Resetuj kolejność kolumn"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "Uruchom ponownie transkrypcję"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "Zmień nazwę"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "Dodaj/edytuj notatki"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "Zmień nazwę transkrypcji"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "Wprowadź nową nazwę:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "Wprowadź odpowiednie notatki do tej transkrypcji:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "Nie można ponownie uruchomić"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr ""
+"Tylko nieudane lub anulowane transkrypcje mogą być uruchomione ponownie."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "Nie udało się uruchomić ponownie transkrypcji: {}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+"Nie można uruchomić ponownie transkrypcji: model jest niedostępny i nie "
+"można go pobrać."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr ""
+"Nie można uruchomić ponownie transkrypcji: nie znaleziono procesu "
+"transkrypcji."
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Live Recording"
msgstr "Nagrywanie na żywo"
-#: buzz/widgets/recording_transcriber_widget.py:144
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Click Record to begin..."
msgstr "Naciśnij Nagraj, aby zacząć..."
-#: buzz/widgets/recording_transcriber_widget.py:147
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Waiting for AI translation..."
-msgstr ""
+msgstr "Oczekiwanie na tłumaczenie AI..."
-#: buzz/widgets/recording_transcriber_widget.py:159
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Microphone:"
msgstr "Mikrofon:"
-#: buzz/widgets/recording_transcriber_widget.py:523
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "Pokaż w nowym oknie"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "Rozmiar tekstu:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "Motyw"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "Jasny"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "Ciemny"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "Niestandardowy"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "Kolor tekstu"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "Kolor tła"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "Pełny ekran"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "Kopiuj"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "Kopiuj transkrypcję do schowka"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "Nie ma nic do skopiowania!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "Kopiowanie nie powiodło się"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "Skopiowano!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "Wybierz kolor tekstu"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "Wybierz kolor tła"
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "An error occurred while starting a new recording:"
msgstr "Wystąpił błąd podczas rozpoczęcia nowego nagrania:"
-#: buzz/widgets/recording_transcriber_widget.py:527
+#: buzz/widgets/recording_transcriber_widget.py
msgid ""
"Please check your audio devices or check the application logs for more "
"information."
@@ -420,137 +740,406 @@ msgstr ""
"Sprawdź urządzenia audio lub przejrzyj logi aplikacji, by uzyskać więcej "
"informacji."
-#: buzz/widgets/about_dialog.py:80
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "Dostępna jest nowa wersja Buzz!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "Aktualna wersja:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "Nowa wersja:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "Informacje o wydaniu:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "Pobierz i zainstaluj"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "Brak adresu URL do pobrania dla Twojej platformy."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "Pobieranie pliku {} z {}..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "Pobieranie pliku {} z {} ({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "Pobieranie nie powiodło się"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "Nie udało się pobrać aktualizacji: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "Nie udało się zapisać instalatora: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "Pobieranie zakończone!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "Nie udało się uruchomić instalatora: {}"
+
+#: buzz/widgets/about_dialog.py
msgid "Check for updates"
msgstr "Sprawdź aktualizacje"
-#: buzz/widgets/about_dialog.py:109
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "Pokaż logi"
+
+#: buzz/widgets/about_dialog.py
msgid "You're up to date!"
msgstr "Posiadasz najnowszą wersję!"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:93
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "Średnia głośność"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "Kolejka"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "Start"
msgstr "Rozpocznij"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:94
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "End"
msgstr "Zakończ"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:95
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:34
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:30
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text"
msgstr "Tekst"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:96
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:40
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:31
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:64
-#, fuzzy
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Translation"
-msgstr "Nowa transkrypcja"
+msgstr "Tłumaczenie"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:26
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "View"
-msgstr ""
+msgstr "Widok"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:46
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "Timestamps"
-msgstr ""
+msgstr "Znaczniki czasu"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:156
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Export"
-msgstr ""
+msgstr "Eksportuj"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:170
-#: buzz/transcriber/transcriber.py:24
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Translate"
-msgstr ""
+msgstr "Tłumacz"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:180
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Resize"
-msgstr ""
+msgstr "Zmień rozmiar"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:279
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "Identyfikuj mówców"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "Znajdź"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "Pokaż/ukryj pasek wyszukiwania (Ctrl+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "Znajdź:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "Wprowadź tekst do wyszukania..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "Poprzedni wynik (Shift+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "Następny wynik (Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "Wyczyść"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "Sterowanie odtwarzaniem:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "Zapętlaj fragment"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr "Włącz/wyłącz zapętlanie po kliknięciu na fragmenty transkrypcji"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "Podążaj za dźwiękiem"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+"Włącz/wyłącz śledzenie bieżącej pozycji audio w transkrypcji. Gdy włączone, "
+"automatycznie przewija do bieżącego tekstu."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "Przewiń do bieżącego"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "Przewiń do aktualnie mówionego tekstu"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "1 z 100+ wyników"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "1 z "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr " wyników"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "Nie znaleziono wyników"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr " z 100+ wyników"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr " z "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "API Key Required"
-msgstr ""
+msgstr "Wymagany klucz API"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:280
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Please enter OpenAI API Key in preferences"
-msgstr ""
+msgstr "Wprowadź klucz API OpenAI w ustawieniach"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:297
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "Wydłuż czas końcowy"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "Wydłuż zakończenia o maksymalnie (sekundy)"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "Wydłuż zakończenia"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "Opcje zmiany rozmiaru"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Desired subtitle length"
-msgstr ""
+msgstr "Żądana długość napisów"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:298
-msgid "Enter target characters per subtitle:"
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
msgstr ""
+"Dostępne tylko jeśli znaczniki dla słów były wyłączone podczas transkrypcji"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:78
-#, fuzzy
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "Opcje scalania"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "Scal według przerwy"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "Podziel według interpunkcji"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "Podziel według maksymalnej długości"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "Scal"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr ""
+"Dostępne tylko jeśli znaczniki dla słów były włączone podczas transkrypcji"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr ""
+"Identyfikacja mówcy jest niedostępna: nie udało się załadować wymaganych "
+"bibliotek."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 Zbieranie transkrypcji"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 Ładowanie audio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 Ładowanie modelu wyrównania"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr ""
+"3/8 Ładowanie modelu wyrównania (ponowna próba z pamięcią podręczną...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+"Nie udało się załadować modelu wyrównania. Sprawdź połączenie internetowe i "
+"spróbuj ponownie."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 Przetwarzanie audio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 Przygotowywanie transkrypcji"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 Identyfikowanie mówców"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 Przypisywanie mówców do transkrypcji"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 Identyfikacja zakończona"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 Błąd podczas identyfikacji mówców"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "Krok 1: Identyfikuj mówców"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "Identyfikuj"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "Gotowy do identyfikacji mówców"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "Nie znaleziono pliku audio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "Krok 2: Nazwij mówców"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "Odtwórz próbkę"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "Scal zdania mówcy"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "Zapisz"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "Anulowanie..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "Anulowano"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Save File"
msgstr "Zapisz plik"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:80
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text files"
msgstr "Pliki tekstowe"
-#: buzz/widgets/snap_notice.py:9
-msgid "Snap permission notice"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:13
-msgid ""
-"Detected missing permissions, please check that snap permissions have been "
-"granted"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:16
-msgid ""
-"To enable necessary permissions run the following commands in the terminal"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:30
-msgid "Close"
-msgstr ""
-
-#: buzz/widgets/model_download_progress_dialog.py:36
-#, fuzzy
+#: buzz/widgets/model_download_progress_dialog.py
msgid "Downloading model"
-msgstr "Pobrany"
+msgstr "Pobieranie modelu"
-#: buzz/widgets/model_download_progress_dialog.py:37
+#: buzz/widgets/model_download_progress_dialog.py
msgid "remaining"
-msgstr ""
+msgstr "pozostało"
-#: buzz/widgets/menu_bar.py:38
-#, fuzzy
+#: buzz/widgets/menu_bar.py
msgid "Import File..."
msgstr "Importuj plik..."
-#: buzz/widgets/menu_bar.py:41
-#, fuzzy
+#: buzz/widgets/menu_bar.py
msgid "Import URL..."
msgstr "Importuj URL..."
-#: buzz/widgets/menu_bar.py:44
-msgid "About"
-msgstr ""
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "Importuj folder..."
-#: buzz/widgets/menu_bar.py:48
+#: buzz/widgets/menu_bar.py
+msgid "About"
+msgstr "O programie"
+
+#: buzz/widgets/menu_bar.py
msgid "Preferences..."
msgstr "Ustawienia..."
-#: buzz/widgets/menu_bar.py:51 buzz/widgets/menu_bar.py:61
+#: buzz/widgets/menu_bar.py
msgid "Help"
msgstr "Pomoc"
-#: buzz/widgets/menu_bar.py:57
+#: buzz/widgets/menu_bar.py
msgid "File"
msgstr "Plik"
-#: buzz/widgets/main_window.py:227
+#: buzz/widgets/main_window.py
msgid ""
"Are you sure you want to delete the selected transcription(s)? This action "
"cannot be undone."
@@ -558,63 +1147,510 @@ msgstr ""
"Czy na pewno chcesz usunąć zaznaczone transkrypcje? Tej operacji nie można "
"cofnąć."
-#: buzz/widgets/main_window.py:255
+#: buzz/widgets/main_window.py
msgid "Select audio file"
msgstr "Wybierz plik audio"
-#: buzz/widgets/main_window.py:291
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "Wybierz folder"
+
+#: buzz/widgets/main_window.py
msgid "Unable to save OpenAI API key to keyring"
-msgstr ""
+msgstr "Nie można zapisać klucza API OpenAI w breloku kluczy"
-#: buzz/transcriber/transcriber.py:25
-#, fuzzy
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr "Serwer Whisper nie uruchomił się. Sprawdź logi, aby uzyskać szczegóły."
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"Serwer Whisper nie uruchomił się z powodu niewystarczającej pamięci. Spróbuj "
+"ponownie z mniejszym modelem. Aby wymusić tryb CPU, użyj zmiennej "
+"środowiskowej BUZZ_FORCE_CPU=TRUE."
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "Przetłumacz na angielski"
+
+#: buzz/transcriber/transcriber.py
msgid "Transcribe"
-msgstr "Otwórz transkrypt"
+msgstr "Transkrybuj"
-#: buzz/model_loader.py:532
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "Chiński"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "Rosyjski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "Koreański"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "Francuski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "Portugalski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "Turecki"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "Arabski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "Szwedzki"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "Indonezyjski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "Hindi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "Fiński"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "Wietnamski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "Hebrajski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "Grecki"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "Malajski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "Czeski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "Rumuński"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "Węgierski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "Tamilski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "Norweski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "Tajski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "Urdu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "Chorwacki"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "Bułgarski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "Litewski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "Łacina"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "Maoryski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "Malajalam"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "Walijski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "Słowacki"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "Telugu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "Perski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "Bengalski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "Serbski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "Azerbejdżański"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "Słoweński"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "Kannada"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "Estoński"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "Macedoński"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "Bretoński"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "Baskijski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "Islandzki"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "Ormiański"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "Nepalski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "Mongolski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "Bośniacki"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "Kazachski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "Albański"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "Suahili"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "Galicyjski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "Marathi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "Pendżabski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "Syngaleski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "Khmerski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "Shona"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "Joruba"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "Somalijski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "Afrikaans"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "Oksytański"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "Gruziński"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "Białoruski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "Tadżycki"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "Sindhi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "Gudżarati"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "Amharski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "Jidysz"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "Laotański"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "Uzbecki"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "Farerski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "Kreolski haitański"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "Paszto"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "Turkmeński"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "Nynorsk"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "Maltański"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "Sanskryt"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "Luksemburski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "Birmański"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "Tybetański"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "Tagalog"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "Malgaski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "Asamski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "Tatarski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "Hawajski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "Lingala"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "Hausa"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "Baszkirski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "Jawajski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "Sundajski"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "Kantoński"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
msgid "A connection error occurred"
-msgstr ""
+msgstr "Wystąpił błąd połączenia"
-#: buzz/settings/shortcut.py:17
-#, fuzzy
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "Uruchamianie Whisper.cpp..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "Rozpoczynanie transkrypcji..."
+
+#: buzz/settings/shortcut.py
msgid "Open Record Window"
-msgstr "Nagrywanie na żywo"
+msgstr "Otwórz okno nagrywania"
-#: buzz/settings/shortcut.py:18
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "Import File"
-msgstr "Importuj plik..."
+msgstr "Importuj plik"
-#: buzz/settings/shortcut.py:20
+#: buzz/settings/shortcut.py
msgid "Open Preferences Window"
-msgstr ""
+msgstr "Otwórz okno ustawień"
-#: buzz/settings/shortcut.py:22
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Text"
-msgstr "Nowa transkrypcja"
+msgstr "Wyświetl tekst transkrypcji"
-#: buzz/settings/shortcut.py:23
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Translation"
-msgstr "Nowa transkrypcja"
+msgstr "Wyświetl tłumaczenie transkrypcji"
-#: buzz/settings/shortcut.py:24
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Timestamps"
-msgstr "Nowa transkrypcja"
+msgstr "Wyświetl znaczniki czasu transkrypcji"
-#: buzz/settings/recording_transcriber_mode.py:5
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "Wyszukaj w transkrypcji"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "Przejdź do następnego wyniku wyszukiwania"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "Przejdź do poprzedniego wyniku wyszukiwania"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "Przewiń do bieżącego tekstu"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "Odtwórz/wstrzymaj audio"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "Odtwórz ponownie bieżący fragment"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "Przełącz sterowanie odtwarzaniem"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "Zmniejsz czas początku fragmentu"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "Zwiększ czas początku fragmentu"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "Zmniejsz czas końca fragmentu"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "Zwiększ czas końca fragmentu"
+
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append below"
-msgstr ""
+msgstr "Dodaj poniżej"
-#: buzz/settings/recording_transcriber_mode.py:6
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append above"
-msgstr ""
+msgstr "Dodaj powyżej"
-#: buzz/settings/recording_transcriber_mode.py:7
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append and correct"
+msgstr "Dodaj i popraw"
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
msgstr ""
+"Wyodrębnianie mowy nie powiodło się! Sprawdź połączenie internetowe — może "
+"być konieczne pobranie modelu."
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "Oddzielone przecinkiem, np. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+
+#~ msgid "Temperature:"
+#~ msgstr "Temperatura:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr ""
+#~ "Proszę przetłumacz każdy przesłany tekst z angielskiego na hiszpański."
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "Błąd tłumaczenia, sprawdź logi!"
#~ msgid "ID"
#~ msgstr "ID"
diff --git a/buzz/locale/pt_BR/LC_MESSAGES/buzz.po b/buzz/locale/pt_BR/LC_MESSAGES/buzz.po
new file mode 100644
index 00000000..b9760b12
--- /dev/null
+++ b/buzz/locale/pt_BR/LC_MESSAGES/buzz.po
@@ -0,0 +1,1680 @@
+# Portuguese-Brazilian Translation for Buzz Project.
+# Copyright (C) 2025
+# This file is distributed under the same license as the package Buzz.
+# Paulo Schopf , 2025.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Buzz\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
+"PO-Revision-Date: 2025-11-01 17:43-0300\n"
+"Last-Translator: Paulo Schopf \n"
+"Language-Team: none\n"
+"Language: pt_BR\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 3.6\n"
+
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
+msgid "Import URL"
+msgstr "Importar URL"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "https://example.com/audio.mp3"
+msgstr "https://exemplo.com/audio.mp3"
+
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
+msgid "Ok"
+msgstr "Ok"
+
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "URL:"
+msgstr "URL:"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "Invalid URL"
+msgstr "URL inválida"
+
+#: buzz/widgets/import_url_dialog.py
+msgid "The URL you entered is invalid."
+msgstr "A URL inserida é inválida."
+
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "Apresentação de Transcrição ao Vivo"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
+msgid "Reset to Defaults"
+msgstr "Redefinir para o Padrão"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "Inglês"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "Catalão"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "Dinamarquês"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "Holandês"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "Alemão"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "Espanhol"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "Italiano"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "Japonês"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "Letão"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "Polonês"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "Português (Brasil)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "Ucraniano"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "Chinês (Simplificado)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "Chinês (Tradicional)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "Reinicialização necessária!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "Idioma da Interface"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Font Size"
+msgstr "Tamanho da Fonte"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Test"
+msgstr "Testar"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API key"
+msgstr "Chave API da OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI base url"
+msgstr "URL base da OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "Modelo de API da OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Default export file name"
+msgstr "Nome padrão do arquivo de exportação"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Enable live recording transcription export"
+msgstr "Habilitar exportação da transcrição ao vivo"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Browse"
+msgstr "Procurar"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Export folder"
+msgstr "Pasta de exportação"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Live recording mode"
+msgstr "Modo de gravação ao vivo"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
+msgstr ""
+"Nota: As configurações de exportação de gravação ao vivo serão movidas para "
+"as Configurações Avançadas na tela de Gravação ao Vivo em uma versão futura."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "Usar quantização de 8 bits para reduzir o uso de memória"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"Aplica-se aos modelos Huggingface e Faster Whisper. Reduz o uso de memória "
+"da GPU, mas pode diminuir ligeiramente a qualidade da transcrição."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "Reduzir RAM da GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "Usar somente a CPU e desabilitar aceleração por GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+"Marque isso se modelos maiores não couberem na memória da GPU e o Buzz travar"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "Desabilitar GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API Key Test"
+msgstr "Teste da Chave API OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Your API key is valid. Buzz will use this key to perform Whisper API "
+"transcriptions and AI translations."
+msgstr ""
+"Sua chave API é válida. O Buzz usará esta chave para realizar transcrições "
+"API Whisper e traduções de IA."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Invalid API key"
+msgstr "Chave API inválida"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
+msgstr ""
+"A API suporta apenas caracteres base64 (A-Za-z0-9+/=_-). Outros caracteres "
+"na chave API podem causar erros."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Select Export Folder"
+msgstr "Selecionar Pasta de Exportação"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"OpenAI API returned invalid response. Please check the API url or your key. "
+"Transcription and translation may still work if the API does not support key "
+"validation."
+msgstr ""
+"A API OpenAI retornou uma resposta inválida. Verifique a URL da API ou sua "
+"chave. A transcrição e tradução ainda podem funcionar se a API não suportar "
+"validação de chave."
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Enable folder watch"
+msgstr "Habilitar monitoramento de pasta"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "Excluir arquivos processados"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Input folder"
+msgstr "Pasta de entrada"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Output folder"
+msgstr "Pasta de saída"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Select Input Folder"
+msgstr "Selecionar Pasta de Entrada"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Select Output Folder"
+msgstr "Selecionar Pasta de Saída"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Preferences"
+msgstr "Preferências"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "General"
+msgstr "Geral"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Models"
+msgstr "Modelos"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Shortcuts"
+msgstr "Atalhos"
+
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+msgid "Folder Watch"
+msgstr "Monitorar Pasta"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Group"
+msgstr "Grupo"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Huggingface ID of a Faster whisper model"
+msgstr "ID Huggingface de um modelo Faster Whisper"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download"
+msgstr "Baixar"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Show file location"
+msgstr "Mostrar local do arquivo"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Delete"
+msgstr "Excluir"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Downloaded"
+msgstr "Baixado"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Available for Download"
+msgstr "Disponível para Download"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download link to Whisper.cpp ggml model file"
+msgstr "Link para o arquivo de modelo Whisper.cpp ggml"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Delete Model"
+msgstr "Excluir Modelo"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Are you sure you want to delete the selected model?"
+msgstr "Tem certeza que deseja excluir o modelo selecionado?"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+msgid "Download failed"
+msgstr "Falha ao baixar"
+
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
+msgid "Error"
+msgstr "Erro"
+
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
+msgid "Record"
+msgstr "Gravar"
+
+#: buzz/widgets/record_button.py
+msgid "Stop"
+msgstr "Parar"
+
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
+msgid "Detect Language"
+msgstr "Detectar Idioma"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "ex.: eng, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"Insira um código de idioma ISO 639-3 (3 letras).\n"
+"Exemplos: eng (Inglês), fra (Francês), deu (Alemão),\n"
+"spa (Espanhol), lav (Letão)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
+msgid "Run"
+msgstr "Executar"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Model:"
+msgstr "Modelo:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "First time use of a model may take up to several minutest to load."
+msgstr "O primeiro uso de um modelo pode levar vários minutos para carregar."
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Api Key:"
+msgstr "Chave API:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Task:"
+msgstr "Tarefa:"
+
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+msgid "Language:"
+msgstr "Idioma:"
+
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
+msgid "Enter prompt..."
+msgstr "Digite um prompt..."
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Advanced Settings"
+msgstr "Configurações Avançadas"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Speech recognition settings"
+msgstr "Configurações de reconhecimento de fala"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Initial Prompt:"
+msgstr "Prompt Inicial:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Translation settings"
+msgstr "Configurações de tradução"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable AI translation"
+msgstr "Habilitar tradução por IA"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "AI model:"
+msgstr "Modelo de IA:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
+msgstr ""
+"Por favor, traduza cada texto enviado a você do inglês para o espanhol. A "
+"tradução será usada em um sistema automatizado, portanto, não adicione "
+"comentários ou notas, apenas a tradução."
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Instructions for AI:"
+msgstr "Instruções para a IA:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "Configurações de gravação"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "Limiar de silêncio:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "Modo de gravação ao vivo:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "Separador de linha:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "Etapa de transcrição:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "Ocultar não confirmado"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "Habilitar exportação de gravação ao vivo"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "Pasta de exportação:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "Nome do arquivo de exportação:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "Arquivo de texto (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "Tipo de arquivo de exportação:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"Limitar entradas de exportação\n"
+"(0 = exportar tudo):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Word-level timings"
+msgstr "Tempos em nível de palavra"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "Extrair fala"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Export:"
+msgstr "Exportar:"
+
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
+msgid "Huggingface ID of a model"
+msgstr "ID Huggingface de um modelo"
+
+#: buzz/widgets/transcriber/advanced_settings_button.py
+msgid "Advanced..."
+msgstr "Avançado..."
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "Nova Transcrição de Arquivo"
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "Nova Transcrição de URL"
+
+#: buzz/widgets/main_window_toolbar.py
+msgid "Open Transcript"
+msgstr "Abrir Transcrição"
+
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
+msgid "Cancel Transcription"
+msgstr "Cancelar Transcrição"
+
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
+msgid "Clear History"
+msgstr "Limpar Histórico"
+
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "Atualização Disponível"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "In Progress"
+msgstr "Em Progresso"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Completed"
+msgstr "Concluído"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed"
+msgstr "Falhou"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Canceled"
+msgstr "Cancelado"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Queued"
+msgstr "Na fila"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "File Name / URL"
+msgstr "Nome do Arquivo / URL"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Model"
+msgstr "Modelo"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Task"
+msgstr "Tarefa"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Status"
+msgstr "Status"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Completed"
+msgstr "Data de Conclusão"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "Data de Adição"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "Notas"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "Redefinir Ordem das Colunas"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "Reiniciar Transcrição"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "Renomear"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "Adicionar/Editar Notas"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "Renomear Transcrição"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "Digite o novo nome:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "Digite algumas notas relevantes para esta transcrição:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "Não é possível reiniciar"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr "Somente transcrições com falha ou canceladas podem ser reiniciadas."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "Falha ao reiniciar a transcrição: {}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+"Não foi possível reiniciar a transcrição: o modelo não está disponível e não "
+"pôde ser baixado."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr ""
+"Não foi possível reiniciar a transcrição: trabalhador de transcrição não "
+"encontrado."
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Live Recording"
+msgstr "Gravação ao Vivo"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Click Record to begin..."
+msgstr "Clique em Gravar para começar..."
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Waiting for AI translation..."
+msgstr "Aguardando tradução da IA..."
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Microphone:"
+msgstr "Microfone:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "Mostrar em nova janela"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "Tamanho do Texto:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "Tema"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "Claro"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "Escuro"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "Personalizado"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "Cor do Texto"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "Cor de Fundo"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "Tela Cheia"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "Copiar"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "Copiar transcrição para a área de transferência"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "Nada para copiar!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "Falha ao copiar"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "Copiado!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "Selecionar Cor do Texto"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "Selecionar Cor de Fundo"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "An error occurred while starting a new recording:"
+msgstr "Ocorreu um erro ao iniciar uma nova gravação:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid ""
+"Please check your audio devices or check the application logs for more "
+"information."
+msgstr ""
+"Verifique seus dispositivos de áudio ou os logs do aplicativo para mais "
+"informações."
+
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "Uma nova versão do Buzz está disponível!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "Versão atual:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "Nova versão:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "Notas de Versão:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "Baixar e instalar"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "Nenhuma URL de download disponível para sua plataforma."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "Baixando arquivo {} de {}..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "Baixando arquivo {} de {} ({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "Falha no download"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "Falha ao baixar a atualização: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "Falha ao salvar o instalador: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "Download concluído!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "Falha ao executar o instalador: {}"
+
+#: buzz/widgets/about_dialog.py
+msgid "Check for updates"
+msgstr "Verificar atualizações"
+
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "Mostrar logs"
+
+#: buzz/widgets/about_dialog.py
+msgid "You're up to date!"
+msgstr "Você está atualizado!"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "Volume médio"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "Fila"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+msgid "Start"
+msgstr "Início"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+msgid "End"
+msgstr "Fim"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Text"
+msgstr "Texto"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Translation"
+msgstr "Tradução"
+
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+msgid "View"
+msgstr "Visualizar"
+
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+msgid "Timestamps"
+msgstr "Marcações de tempo"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Export"
+msgstr "Exportar"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Translate"
+msgstr "Traduzir"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize"
+msgstr "Redimensionar"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "Identificar Falantes"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "Procurar"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "Mostrar/Ocultar a Barra de Pesquisa"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "Procurar:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "Digite o texto a procurar..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "Encontro prévio (Shift+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "Próximo encontro (Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "Limpar"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "Controles de Reprodução:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "Segmento de Loop"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr "Habilitar/desabilitar loop ao clicar em segmentos de transcrição"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "Siga o Áudio"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+"Ativar/desativar a opção de seguir a posição atual do áudio na transcrição. "
+"Quando ativado, rola automaticamente para o texto atual."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "Rolar para o Atual"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "Role até o texto falado no momento"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "1 de 100+ encontros"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "1 de "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr " encontros"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "Nada encontrado"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr " de 100+ encontros"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr " de "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "API Key Required"
+msgstr "Chave API Necessária"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Please enter OpenAI API Key in preferences"
+msgstr "Insira a chave API OpenAI nas preferências"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "Estender o tempo final"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "Estender finais em até (segundos)"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "Estender finais"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "Opções de Redimensionamento"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Desired subtitle length"
+msgstr "Duração desejada da legenda"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
+msgstr ""
+"Disponível apenas se os tempos em nível de palavra foram desabilitados "
+"durante a transcrição"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "Opções de Mesclagem"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "Mesclar por intervalo"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "Dividir por pontuação"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "Dividir por tamanho máximo"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "Mesclar"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr ""
+"Disponível apenas se os tempos em nível de palavra foram habilitados durante "
+"a transcrição"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr ""
+"Identificação de falantes não está disponível: falha ao carregar as "
+"bibliotecas necessárias."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 Coletando transcrições"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 Carregando áudio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 Carregando modelo de alinhamento"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr "3/8 Carregando modelo de alinhamento (tentando novamente com cache...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+"Falha ao carregar o modelo de alinhamento. Verifique sua conexão com a "
+"internet e tente novamente."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 Processando áudio"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 Preparando transcrições"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 Identificando falantes"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 Mapeando falantes para transcrições"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 Identificação concluída"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 Erro ao identificar falantes"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "Passo 1: Identificar falantes"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "Identificar"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "Pronto para identificar falantes"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "Arquivo de áudio não encontrado"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "Passo 2: Nomear falantes"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "Reproduzir amostra"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "Mesclar frases do falante"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "Salvar"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "Cancelando..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "Cancelado"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Save File"
+msgstr "Salvar Arquivo"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
+msgid "Text files"
+msgstr "Arquivos de texto"
+
+#: buzz/widgets/model_download_progress_dialog.py
+msgid "Downloading model"
+msgstr "Baixando modelo"
+
+#: buzz/widgets/model_download_progress_dialog.py
+msgid "remaining"
+msgstr "restante"
+
+#: buzz/widgets/menu_bar.py
+msgid "Import File..."
+msgstr "Importar Arquivo..."
+
+#: buzz/widgets/menu_bar.py
+msgid "Import URL..."
+msgstr "Importar URL..."
+
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "Importar Pasta..."
+
+#: buzz/widgets/menu_bar.py
+msgid "About"
+msgstr "Sobre"
+
+#: buzz/widgets/menu_bar.py
+msgid "Preferences..."
+msgstr "Preferências..."
+
+#: buzz/widgets/menu_bar.py
+msgid "Help"
+msgstr "Ajuda"
+
+#: buzz/widgets/menu_bar.py
+msgid "File"
+msgstr "Arquivo"
+
+#: buzz/widgets/main_window.py
+msgid ""
+"Are you sure you want to delete the selected transcription(s)? This action "
+"cannot be undone."
+msgstr ""
+"Tem certeza que deseja excluir a(s) transcrição(ões) selecionada(s)? Esta "
+"ação não pode ser desfeita."
+
+#: buzz/widgets/main_window.py
+msgid "Select audio file"
+msgstr "Selecionar arquivo de áudio"
+
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "Selecionar Pasta de Entrada"
+
+#: buzz/widgets/main_window.py
+msgid "Unable to save OpenAI API key to keyring"
+msgstr "Não foi possível salvar a chave da API OpenAI no cofre de chaves"
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr "Falha ao iniciar o servidor Whisper. Verifique os logs."
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"O servidor Whisper falhou ao iniciar devido à memória insuficiente. Tente "
+"novamente com um modelo menor. Para forçar o modo CPU, use a variável de "
+"ambiente BUZZ_FORCE_CPU=TRUE."
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "Traduzir para Inglês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Transcribe"
+msgstr "Transcrever"
+
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "Chinês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "Russo"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "Coreano"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "Francês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "Português"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "Turco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "Árabe"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "Sueco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "Indonésio"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "Híndi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "Finlandês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "Vietnamita"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "Hebraico"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "Grego"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "Malaio"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "Tcheco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "Romeno"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "Húngaro"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "Tâmil"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "Norueguês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "Tailandês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "Urdu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "Croata"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "Búlgaro"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "Lituano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "Latim"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "Maori"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "Malaiala"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "Galês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "Eslovaco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "Telugu"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "Persa"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "Bengali"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "Sérvio"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "Azerbaijano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "Esloveno"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "Canarês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "Estoniano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "Macedônio"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "Bretão"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "Basco"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "Islandês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "Armênio"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "Nepalês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "Mongol"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "Bósnio"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "Cazaque"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "Albanês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "Suaíli"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "Galego"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "Marathi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "Panjabi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "Cingalês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "Khmer"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "Shona"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "Iorubá"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "Somali"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "Africâner"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "Occitano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "Georgiano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "Bielorrusso"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "Tajique"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "Sindi"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "Gujarati"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "Amárico"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "Ídiche"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "Laosiano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "Uzbeque"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "Feroês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "Crioulo Haitiano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "Afegão"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "Turcomeno"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "Novo Norueguês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "Maltês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "Sânscrito"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "Luxemburguês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "Birmanês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "Tibetano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "Tagalo"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "Malgaxe"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "Assamês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "Tártaro"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "Havaiano"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "Lingala"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "Hauçá"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "Bashkir"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "Javanês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "Sundanês"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "Cantonês"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
+msgid "A connection error occurred"
+msgstr "Ocorreu um erro de conexão"
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "Iniciando Whisper.cpp..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "Iniciando transcrição..."
+
+#: buzz/settings/shortcut.py
+msgid "Open Record Window"
+msgstr "Abrir Janela de Gravação"
+
+#: buzz/settings/shortcut.py
+msgid "Import File"
+msgstr "Importar Arquivo"
+
+#: buzz/settings/shortcut.py
+msgid "Open Preferences Window"
+msgstr "Abrir Janela de Preferências"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Text"
+msgstr "Ver Texto da Transcrição"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Translation"
+msgstr "Ver Tradução da Transcrição"
+
+#: buzz/settings/shortcut.py
+msgid "View Transcript Timestamps"
+msgstr "Ver Marcações de Tempo da Transcrição"
+
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "Pesquisar Transcrição"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "Ir para o Próximo Resultado de Pesquisa na Transcrição"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "Ir para o Resultado de Pesquisa Anterior na Transcrição"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "Role até o Texto Atual"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "Tocar/Pausar o Áudio"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "Repetir o Segmento Atual"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "Alternar Controles de Reprodução"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "Diminuir o Inicio do Segmento"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "Aumentar o Início do Segmento"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "Diminuir o Final do Segmento"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "Estender o Final do Segmento"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append below"
+msgstr "Acrescentar abaixo"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append above"
+msgstr "Acrescentar acima"
+
+#: buzz/settings/recording_transcriber_mode.py
+msgid "Append and correct"
+msgstr "Acrescentar e corrigir"
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
+msgstr ""
+"Falha na extração de fala! Verifique sua conexão com a internet — pode ser "
+"necessário baixar um modelo."
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "Separado por vírgulas, ex: \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+
+#~ msgid "Temperature:"
+#~ msgstr "Temperatura:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr ""
+#~ "Por favor, traduza cada texto enviado a você do Inglês para o Espanhol."
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "Erro de tradução, verifique os logs!"
+
+#~ msgid "Snap permission notice"
+#~ msgstr "Aviso de permissão do Snap"
+
+#~ msgid ""
+#~ "Detected missing permissions, please check that snap permissions have "
+#~ "been granted"
+#~ msgstr ""
+#~ "Permissões ausentes detectadas, verifique se as permissões do Snap foram "
+#~ "concedidas"
+
+#~ msgid ""
+#~ "To enable necessary permissions run the following commands in the terminal"
+#~ msgstr ""
+#~ "Para habilitar as permissões necessárias, execute os seguintes comandos "
+#~ "no terminal"
+
+#~ msgid "Close"
+#~ msgstr "Fechar"
+
+#~ msgid "Enter instructions for AI on how to translate..."
+#~ msgstr "Instrua a IA sobre como traduzir..."
+
+#~ msgid "ID"
+#~ msgstr "Id."
+
+#~ msgid "Undo"
+#~ msgstr "Desfazer"
diff --git a/buzz/locale/uk_UA/LC_MESSAGES/buzz.po b/buzz/locale/uk_UA/LC_MESSAGES/buzz.po
index 4b29644c..0c671bd5 100644
--- a/buzz/locale/uk_UA/LC_MESSAGES/buzz.po
+++ b/buzz/locale/uk_UA/LC_MESSAGES/buzz.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-11-03 08:32+0200\n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Yevhen Popok \n"
"Language-Team: \n"
@@ -14,93 +14,209 @@ msgstr ""
"n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Poedit 3.4.4\n"
-#: buzz/widgets/import_url_dialog.py:19 buzz/settings/shortcut.py:19
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
msgid "Import URL"
msgstr "Імпортувати адресу"
-#: buzz/widgets/import_url_dialog.py:22
+#: buzz/widgets/import_url_dialog.py
msgid "https://example.com/audio.mp3"
msgstr "https://example.com/audio.mp3"
-#: buzz/widgets/import_url_dialog.py:28
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:69
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:245
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:97
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:295
-#: buzz/widgets/main_window.py:234
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
msgid "Ok"
msgstr "Гаразд"
-#: buzz/widgets/import_url_dialog.py:29
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:70
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:246
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:296
-#: buzz/widgets/model_download_progress_dialog.py:29
-#: buzz/widgets/main_window.py:235
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
msgid "Cancel"
msgstr "Скасувати"
-#: buzz/widgets/import_url_dialog.py:34
+#: buzz/widgets/import_url_dialog.py
msgid "URL:"
msgstr "Адреса:"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "Invalid URL"
msgstr "Недійсна адреса"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "The URL you entered is invalid."
msgstr "Адреса, яку ви ввели, є недійсною"
-#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py:29
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "Презентація транскрипції в реальному часі"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
msgid "Reset to Defaults"
msgstr "Типові значення"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:52
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "Англійська"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "Каталонська"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "Датська"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "Нідерландська"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "Німецька"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "Іспанська"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "Італійська"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "Японська"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "Латвійська"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "Польська"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "Португальська (Бразилія)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "Українська"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "Китайська (спрощена)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "Китайська (традиційна)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "Потрібен перезапуск!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "Мова інтерфейсу"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Font Size"
msgstr "Розмір шрифту"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:61
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Test"
msgstr "Тест"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:67
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API key"
msgstr "API-ключ OpenAI"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:80
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI base url"
msgstr "Базова адреса OpenAI"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:89
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "Модель API OpenAI"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Default export file name"
msgstr "Типова назва файлу експорту"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Enable live recording transcription export"
msgstr "Увімкнути експорт транскрипції з живого запису"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:101
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:47
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:50
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Browse"
msgstr "Огляд"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:120
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Export folder"
msgstr "Тека для експорту"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:131
-#, fuzzy
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Live recording mode"
-msgstr "Живий запис"
+msgstr "Режим живого запису"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:156
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:162
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
+msgstr ""
+"Примітка: Параметри експорту живого запису будуть перенесені до Додаткових "
+"налаштувань на екрані живого запису в майбутній версії."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "Використовувати 8-бітне квантування для зменшення використання пам'яті"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"Застосовується до моделей Huggingface та Faster Whisper. Зменшує "
+"використання пам'яті GPU, але може дещо знизити якість транскрипції."
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "Зменшити RAM GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "Використовувати лише CPU та вимкнути прискорення GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr ""
+"Увімкніть це, якщо великі моделі не поміщаються в пам'ять GPU і Buzz падає"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "Вимкнути GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API Key Test"
msgstr "Тест API-ключа OpenAI"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:157
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"Your API key is valid. Buzz will use this key to perform Whisper API "
"transcriptions and AI translations."
@@ -108,22 +224,24 @@ msgstr ""
"Ваш API-ключ дійсний. Buzz використає цей ключ для транскрипції з Whisper "
"API та перекладу ШІ."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:173
-#, fuzzy
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Invalid API key"
-msgstr "API-ключ OpenAI"
+msgstr "Недійсний API-ключ"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:174
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
-"API supports only base64 characters (A-Za-z0-9+/=). Other characters in API "
-"key may cause errors."
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
msgstr ""
+"API підтримує лише символи base64 (A-Za-z0-9+/=_-). Інші символи в API-ключі "
+"можуть спричиняти помилки."
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:192
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Select Export Folder"
msgstr "Виберіть теку для експорту"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:244
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"OpenAI API returned invalid response. Please check the API url or your key. "
"Transcription and translation may still work if the API does not support key "
@@ -133,275 +251,482 @@ msgstr ""
"API-ключа. Транскрипція та переклад можуть продовжити працювати, якщо API не "
"підтримує перевірку ключа."
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:42
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Enable folder watch"
msgstr "Увімкнути стеження за текою"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "Видалити оброблені файли"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Input folder"
msgstr "Тека введення"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Output folder"
msgstr "Тека виведення"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:105
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Input Folder"
msgstr "Виберіть теку введення"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:114
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Output Folder"
msgstr "Виберіть теку виведення"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:43
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Preferences"
msgstr "Налаштування"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:50
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "General"
msgstr "Загальне"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:53
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Models"
msgstr "Моделі"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:57
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Shortcuts"
msgstr "Клавіатурні скорочення"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:63
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Folder Watch"
msgstr "Нагляд за текою"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:70
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Group"
msgstr "Група"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:82
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Huggingface ID of a Faster whisper model"
msgstr "Huggingface ID для моделі Faster Whisper"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download"
msgstr "Завантажити"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:99
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Show file location"
msgstr "Показати розташування файлу"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:107
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete"
msgstr "Видалити"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:138
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Downloaded"
msgstr "Завантажене"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:143
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Available for Download"
msgstr "Доступно для завантаження"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:164
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download link to Whisper.cpp ggml model file"
msgstr "Посилання на завантаження файлу ggml моделі Whisper.cpp"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:239
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete Model"
msgstr "Видалити модель"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:240
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Are you sure you want to delete the selected model?"
msgstr "Ви впевнені, що хочете видалити вибрану модель?"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:268
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download failed"
msgstr "Невдале завантаження"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:269
-#: buzz/widgets/main_window.py:291 buzz/model_loader.py:503
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
msgid "Error"
msgstr "Помилка"
-#: buzz/widgets/record_button.py:10 buzz/widgets/record_button.py:17
-#: buzz/widgets/main_window_toolbar.py:35
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
msgid "Record"
msgstr "Записати"
-#: buzz/widgets/record_button.py:21
+#: buzz/widgets/record_button.py
msgid "Stop"
msgstr "Зупинити"
-#: buzz/widgets/transcriber/languages_combo_box.py:35
-#: buzz/transcriber/transcriber.py:159
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
msgid "Detect Language"
msgstr "Визначити мову"
-#: buzz/widgets/transcriber/file_transcriber_widget.py:79
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "напр., eng, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"Введіть код мови ISO 639-3 (3 літери).\n"
+"Приклади: eng (Англійська), fra (Французька), deu (Німецька),\n"
+"spa (Іспанська), lav (Латвійська)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
msgid "Run"
msgstr "Запуск"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:92
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Model:"
msgstr "Модель:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:104
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
msgid "First time use of a model may take up to several minutest to load."
-msgstr ""
+msgstr "Перше використання моделі може тривати кілька хвилин для завантаження."
-#: buzz/widgets/transcriber/transcription_options_group_box.py:113
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Api Key:"
msgstr "API-ключ:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:114
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Task:"
msgstr "Завдання:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:115
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Language:"
msgstr "Мова:"
-#: buzz/widgets/transcriber/initial_prompt_text_edit.py:10
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
msgid "Enter prompt..."
msgstr "Введіть підказку..."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:33
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Advanced Settings"
msgstr "Додаткові налаштування"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:37
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Speech recognition settings"
msgstr "Параметри розпізнавання мовлення"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:46
-msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-msgstr "Значення розділені комами, напр., \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:55
-msgid "Temperature:"
-msgstr "Температура:"
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:66
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Initial Prompt:"
msgstr "Початкова підказка:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:68
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Translation settings"
msgstr "Налаштування перекладу"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:72
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Enable AI translation"
msgstr "Увімкнути переклад ШІ"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:84
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "AI model:"
msgstr "Модель ШІ"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:88
-msgid "Enter instructions for AI on how to translate..."
-msgstr "Введіть інструкції для перекладу ШІ..."
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
+msgstr ""
+"Будь ласка, перекладайте кожен надісланий вам текст з англійської на "
+"іспанську. Переклад використовуватиметься в автоматизованій системі, тому, "
+"будь ласка, не додавайте жодних коментарів чи приміток, лише переклад."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:92
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Instructions for AI:"
msgstr "Інструкції для ШІ:"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:42
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "Налаштування запису"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "Поріг тиші:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "Режим живого запису:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "Роздільник рядків:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "Крок транскрибування:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "Приховати непідтверджене"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "Увімкнути експорт живого запису"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "Тека для експорту:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "Назва файлу експорту:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "Текстовий файл (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "Тип файлу експорту:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"Обмежити кількість записів експорту\n"
+"(0 = експортувати всі):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Word-level timings"
msgstr "Хронометраж на рівні слів"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:66
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "Витягти мовлення"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Export:"
msgstr "Експорт:"
-#: buzz/widgets/transcriber/hugging_face_search_line_edit.py:37
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
msgid "Huggingface ID of a model"
msgstr "ID чи модель Huggingface"
-#: buzz/widgets/transcriber/advanced_settings_button.py:9
+#: buzz/widgets/transcriber/advanced_settings_button.py
msgid "Advanced..."
msgstr "Додатково..."
-#: buzz/widgets/main_window_toolbar.py:39
-msgid "New Transcription"
-msgstr "Нова транскрипція"
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "Нова транскрипція файлу"
-#: buzz/widgets/main_window_toolbar.py:46
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "Нова транскрипція за адресою"
+
+#: buzz/widgets/main_window_toolbar.py
msgid "Open Transcript"
msgstr "Відкрити транскрипцію"
-#: buzz/widgets/main_window_toolbar.py:52 buzz/settings/shortcut.py:27
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
msgid "Cancel Transcription"
msgstr "Скасувати транскрипцію"
-#: buzz/widgets/main_window_toolbar.py:60 buzz/widgets/main_window.py:223
-#: buzz/settings/shortcut.py:26
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
msgid "Clear History"
msgstr "Очистити історію"
-#: buzz/widgets/transcription_tasks_table_widget.py:64
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "Доступне оновлення"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "In Progress"
msgstr "В процесі"
-#: buzz/widgets/transcription_tasks_table_widget.py:67
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Completed"
msgstr "Завершено"
-#: buzz/widgets/transcription_tasks_table_widget.py:74
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Failed"
msgstr "Невдача"
-#: buzz/widgets/transcription_tasks_table_widget.py:77
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Canceled"
msgstr "Скасовано"
-#: buzz/widgets/transcription_tasks_table_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Queued"
msgstr "У черзі"
-#: buzz/widgets/transcription_tasks_table_widget.py:86
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "File Name / URL"
msgstr "Назва файлу / посилання"
-#: buzz/widgets/transcription_tasks_table_widget.py:98
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Model"
msgstr "Модель"
-#: buzz/widgets/transcription_tasks_table_widget.py:107
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Task"
msgstr "Завдання"
-#: buzz/widgets/transcription_tasks_table_widget.py:116
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Status"
msgstr "Стан"
-#: buzz/widgets/transcription_tasks_table_widget.py:124
-msgid "Date Added"
-msgstr "Дата додавання"
-
-#: buzz/widgets/transcription_tasks_table_widget.py:135
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Date Completed"
msgstr "Дата завершення"
-#: buzz/widgets/recording_transcriber_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "Дата додавання"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "Нотатки"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "Скинути порядок стовпців"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "Перезапустити транскрипцію"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "Перейменувати"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "Додати/редагувати нотатки"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "Перейменувати транскрипцію"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "Введіть нову назву:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "Введіть відповідні нотатки для цієї транскрипції:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "Неможливо перезапустити"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr "Перезапустити можна лише невдалі або скасовані транскрипції."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "Не вдалося перезапустити транскрипцію: {}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr ""
+"Не вдалося перезапустити транскрипцію: модель недоступна та не може бути "
+"завантажена."
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr ""
+"Не вдалося перезапустити транскрипцію: обробник транскрипції не знайдено."
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Live Recording"
msgstr "Живий запис"
-#: buzz/widgets/recording_transcriber_widget.py:144
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Click Record to begin..."
msgstr "Натисніть на Запис, щоб розпочати..."
-#: buzz/widgets/recording_transcriber_widget.py:147
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Waiting for AI translation..."
msgstr "Очікування перекладу від ШІ..."
-#: buzz/widgets/recording_transcriber_widget.py:159
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Microphone:"
msgstr "Мікрофон:"
-#: buzz/widgets/recording_transcriber_widget.py:523
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "Показати у новому вікні"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "Розмір тексту:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "Тема"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "Світла"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "Темна"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "Власна"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "Колір тексту"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "Колір фону"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "Повноекранний режим"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "Копіювати"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "Копіювати транскрипцію до буфера обміну"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "Нічого копіювати!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "Не вдалося скопіювати"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "Скопійовано!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "Виберіть колір тексту"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "Виберіть колір фону"
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "An error occurred while starting a new recording:"
msgstr "При старті нового запису виникла помилка:"
-#: buzz/widgets/recording_transcriber_widget.py:527
+#: buzz/widgets/recording_transcriber_widget.py
msgid ""
"Please check your audio devices or check the application logs for more "
"information."
@@ -409,189 +734,936 @@ msgstr ""
"Будь ласка, перевірте свої аудіопристрої або пошукайте додаткову інформацію "
"в звітах програми."
-#: buzz/widgets/about_dialog.py:80
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "Доступна нова версія Buzz!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "Поточна версія:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "Нова версія:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "Примітки до випуску:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "Завантажити та встановити"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "Посилання для завантаження для вашої платформи відсутнє."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "Завантаження файлу {} з {}..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "Завантаження файлу {} з {} ({:.1f} МБ / {:.1f} МБ)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "Помилка завантаження"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "Не вдалося завантажити оновлення: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "Не вдалося зберегти інсталятор: {}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "Завантаження завершено!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "Не вдалося запустити інсталятор: {}"
+
+#: buzz/widgets/about_dialog.py
msgid "Check for updates"
msgstr "Перевірити оновлення"
-#: buzz/widgets/about_dialog.py:109
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "Показати журнали"
+
+#: buzz/widgets/about_dialog.py
msgid "You're up to date!"
msgstr "У вас актуальна версія!"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:93
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "Середній рівень гучності"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "Черга"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "Start"
msgstr "Початок"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:94
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "End"
msgstr "Кінець"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:95
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:34
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:30
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text"
msgstr "Текст"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:96
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:40
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:31
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:64
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Translation"
msgstr "Переклад"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:26
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "View"
msgstr "Вигляд"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:46
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "Timestamps"
msgstr "Позначки часу"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:156
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Export"
msgstr "Експорт"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:170
-#: buzz/transcriber/transcriber.py:24
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Translate"
msgstr "Перекласти"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:180
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Resize"
-msgstr ""
+msgstr "Змінити розмір"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:279
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "Визначити мовців"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "Знайти"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "Показати/сховати панель пошуку (Ctrl+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "Знайти:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "Введіть текст для пошуку..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "Попередній збіг (Shift+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "Наступний збіг (Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "Очистити"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "Керування відтворенням:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "Повторювати фрагмент"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr "Увімкнути/вимкнути повторення при натисканні на фрагменти транскрипції"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "Стежити за аудіо"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr ""
+"Увімкнути/вимкнути відстеження поточної позиції аудіо в транскрипції. Коли "
+"увімкнено, автоматично прокручує до поточного тексту."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "Прокрутити до поточного"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "Прокрутити до тексту, що зараз вимовляється"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "1 з 100+ збігів"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "1 з "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr " збігів"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "Збігів не знайдено"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr " з 100+ збігів"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr " з "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "API Key Required"
msgstr "Потрібен API-ключ"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:280
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Please enter OpenAI API Key in preferences"
msgstr "Будь ласка, введіть API-ключ OpenAI в налаштуваннях"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:297
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "Продовжити час завершення"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "Продовжити закінчення до (секунд)"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "Продовжити закінчення"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "Параметри зміни розміру"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Desired subtitle length"
-msgstr ""
+msgstr "Бажана довжина субтитрів"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:298
-msgid "Enter target characters per subtitle:"
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
msgstr ""
+"Доступно лише якщо хронометраж на рівні слів був вимкнений під час "
+"транскрипції"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:78
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "Параметри об'єднання"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "Об'єднати за паузою"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "Розділити за пунктуацією"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "Розділити за максимальною довжиною"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "Об'єднати"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr ""
+"Доступно лише якщо хронометраж на рівні слів був увімкнений під час "
+"транскрипції"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr ""
+"Визначення мовців недоступне: не вдалося завантажити необхідні бібліотеки."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 Збирання транскрипцій"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 Завантаження аудіо"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 Завантаження моделі вирівнювання"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr "3/8 Завантаження моделі вирівнювання (повторна спроба з кешем...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr ""
+"Не вдалося завантажити модель вирівнювання. Будь ласка, перевірте "
+"підключення до інтернету та спробуйте ще раз."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 Обробка аудіо"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 Підготовка транскрипцій"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 Визначення мовців"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 Зіставлення мовців із транскрипціями"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 Визначення завершено"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 Помилка при визначенні мовців"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "Крок 1: Визначити мовців"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "Визначити"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "Готово до визначення мовців"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "Аудіофайл не знайдено"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "Крок 2: Назвати мовців"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "Відтворити зразок"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "Об'єднати речення мовців"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "Зберегти"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "Скасування..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "Скасовано"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Save File"
msgstr "Зберегти файл"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:80
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text files"
msgstr "Текстові файли"
-#: buzz/widgets/snap_notice.py:9
-msgid "Snap permission notice"
-msgstr "Попередження щодо дозволів Snap"
-
-#: buzz/widgets/snap_notice.py:13
-msgid ""
-"Detected missing permissions, please check that snap permissions have been "
-"granted"
-msgstr ""
-"Виявлено нестачу повноважень. Будь ласка, перевірте, чи були надані дозволи "
-"для Snap"
-
-#: buzz/widgets/snap_notice.py:16
-msgid ""
-"To enable necessary permissions run the following commands in the terminal"
-msgstr ""
-"Для активації необхідних дозволів, запустіть наступну команду в терміналі"
-
-#: buzz/widgets/snap_notice.py:30
-msgid "Close"
-msgstr "Закрити"
-
-#: buzz/widgets/model_download_progress_dialog.py:36
+#: buzz/widgets/model_download_progress_dialog.py
msgid "Downloading model"
msgstr "Завантаження моделі"
-#: buzz/widgets/model_download_progress_dialog.py:37
+#: buzz/widgets/model_download_progress_dialog.py
msgid "remaining"
msgstr "залишилось"
-#: buzz/widgets/menu_bar.py:38
+#: buzz/widgets/menu_bar.py
msgid "Import File..."
msgstr "Імпортувати файл..."
-#: buzz/widgets/menu_bar.py:41
+#: buzz/widgets/menu_bar.py
msgid "Import URL..."
msgstr "Імпортувати адресу..."
-#: buzz/widgets/menu_bar.py:44
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "Імпортувати теку..."
+
+#: buzz/widgets/menu_bar.py
msgid "About"
msgstr "Про застосунок"
-#: buzz/widgets/menu_bar.py:48
+#: buzz/widgets/menu_bar.py
msgid "Preferences..."
msgstr "Налаштування..."
-#: buzz/widgets/menu_bar.py:51 buzz/widgets/menu_bar.py:61
+#: buzz/widgets/menu_bar.py
msgid "Help"
msgstr "Допомога"
-#: buzz/widgets/menu_bar.py:57
+#: buzz/widgets/menu_bar.py
msgid "File"
msgstr "Файл"
-#: buzz/widgets/main_window.py:227
+#: buzz/widgets/main_window.py
msgid ""
"Are you sure you want to delete the selected transcription(s)? This action "
"cannot be undone."
msgstr ""
"Ви впевнені, що хочете видалити вибрані транскрипції? Це незворотна дія."
-#: buzz/widgets/main_window.py:255
+#: buzz/widgets/main_window.py
msgid "Select audio file"
msgstr "Вибрати аудіофайл"
-#: buzz/widgets/main_window.py:291
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "Виберіть теку введення"
+
+#: buzz/widgets/main_window.py
msgid "Unable to save OpenAI API key to keyring"
msgstr "Не вдається додати до звʼязки ключів API-ключ OpenAI"
-#: buzz/transcriber/transcriber.py:25
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr ""
+"Не вдалося запустити сервер Whisper. Перевірте журнали для отримання деталей."
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"Не вдалося запустити сервер Whisper через недостатній обсяг пам'яті. Будь "
+"ласка, спробуйте ще раз із меншою моделлю. Для примусового режиму CPU "
+"використовуйте змінну середовища BUZZ_FORCE_CPU=TRUE."
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "Перекласти на англійську"
+
+#: buzz/transcriber/transcriber.py
msgid "Transcribe"
msgstr "Розпізнати"
-#: buzz/model_loader.py:532
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "Китайська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "Російська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "Корейська"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "Французька"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "Португальська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "Турецька"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "Арабська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "Шведська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "Індонезійська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "Гінді"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "Фінська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "В'єтнамська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "Іврит"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "Грецька"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "Малайська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "Чеська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "Румунська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "Угорська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "Тамільська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "Норвезька"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "Тайська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "Урду"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "Хорватська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "Болгарська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "Литовська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "Латинська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "Маорі"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "Малаялам"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "Валлійська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "Словацька"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "Телугу"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "Перська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "Бенгальська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "Сербська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "Азербайджанська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "Словенська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "Каннада"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "Естонська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "Македонська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "Бретонська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "Баскська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "Ісландська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "Вірменська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "Непальська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "Монгольська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "Боснійська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "Казахська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "Албанська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "Суахілі"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "Галісійська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "Маратхі"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "Панджабі"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "Сингальська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "Кхмерська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "Шона"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "Йоруба"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "Сомалійська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "Африкаанс"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "Окситанська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "Грузинська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "Білоруська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "Таджицька"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "Сіндхі"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "Гуджараті"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "Амхарська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "Їдиш"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "Лаоська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "Узбецька"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "Фарерська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "Гаїтянська креольська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "Пушту"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "Туркменська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "Нюношк"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "Мальтійська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "Санскрит"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "Люксембурзька"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "М'янма"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "Тибетська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "Тагальська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "Малагасійська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "Ассамська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "Татарська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "Гавайська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "Лінгала"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "Хауса"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "Башкирська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "Яванська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "Сунданська"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "Кантонська"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
msgid "A connection error occurred"
msgstr "Виникла помилка зʼєднання"
-#: buzz/settings/shortcut.py:17
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "Запуск Whisper.cpp..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "Запуск транскрипції..."
+
+#: buzz/settings/shortcut.py
msgid "Open Record Window"
msgstr "Відкрити вікно запису"
-#: buzz/settings/shortcut.py:18
+#: buzz/settings/shortcut.py
msgid "Import File"
msgstr "Імпортувати файл"
-#: buzz/settings/shortcut.py:20
+#: buzz/settings/shortcut.py
msgid "Open Preferences Window"
msgstr "Відкрити вікно налаштувань"
-#: buzz/settings/shortcut.py:22
+#: buzz/settings/shortcut.py
msgid "View Transcript Text"
msgstr "Переглянути текст транскрипції"
-#: buzz/settings/shortcut.py:23
+#: buzz/settings/shortcut.py
msgid "View Transcript Translation"
msgstr "Переглянути переклад транскрипції"
-#: buzz/settings/shortcut.py:24
+#: buzz/settings/shortcut.py
msgid "View Transcript Timestamps"
msgstr "Переглянути позначки часу в транскрипції"
-#: buzz/settings/recording_transcriber_mode.py:5
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "Пошук у транскрипції"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "Перейти до наступного результату пошуку в транскрипції"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "Перейти до попереднього результату пошуку в транскрипції"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "Прокрутити до поточного тексту"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "Відтворити/призупинити аудіо"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "Повторити поточний фрагмент"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "Перемкнути елементи керування відтворенням"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "Зменшити час початку фрагмента"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "Збільшити час початку фрагмента"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "Зменшити час завершення фрагмента"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "Збільшити час завершення фрагмента"
+
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append below"
-msgstr ""
+msgstr "Додати знизу"
-#: buzz/settings/recording_transcriber_mode.py:6
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append above"
-msgstr ""
+msgstr "Додати зверху"
-#: buzz/settings/recording_transcriber_mode.py:7
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append and correct"
+msgstr "Додати та виправити"
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
msgstr ""
+"Не вдалося витягти мовлення! Перевірте підключення до інтернету — можливо, "
+"потрібно завантажити модель."
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "Значення розділені комами, напр., \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+
+#~ msgid "Temperature:"
+#~ msgstr "Температура:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr ""
+#~ "Будь ласка, перекладайте кожен текст, надісланий вам, з англійської на "
+#~ "іспанську."
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "Помилка перекладу, перегляньте журнали!"
+
+#~ msgid "Snap permission notice"
+#~ msgstr "Попередження щодо дозволів Snap"
+
+#~ msgid ""
+#~ "Detected missing permissions, please check that snap permissions have "
+#~ "been granted"
+#~ msgstr ""
+#~ "Виявлено нестачу повноважень. Будь ласка, перевірте, чи були надані "
+#~ "дозволи для Snap"
+
+#~ msgid ""
+#~ "To enable necessary permissions run the following commands in the terminal"
+#~ msgstr ""
+#~ "Для активації необхідних дозволів, запустіть наступну команду в терміналі"
+
+#~ msgid "Close"
+#~ msgstr "Закрити"
+
+#~ msgid "Enter instructions for AI on how to translate..."
+#~ msgstr "Введіть інструкції для перекладу ШІ..."
diff --git a/buzz/locale/zh_CN/LC_MESSAGES/buzz.po b/buzz/locale/zh_CN/LC_MESSAGES/buzz.po
index ffbdf1b5..35b76c69 100644
--- a/buzz/locale/zh_CN/LC_MESSAGES/buzz.po
+++ b/buzz/locale/zh_CN/LC_MESSAGES/buzz.po
@@ -3,12 +3,11 @@
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , 2024.
# 'transcript' as '识别'
-
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-11-03 08:32+0200\n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
"PO-Revision-Date: 2023-05-01 15:45+0800\n"
"Last-Translator: \n"
"Language-Team: lamb \n"
@@ -18,603 +17,1631 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.2.2\n"
-#: buzz/widgets/import_url_dialog.py:19 buzz/settings/shortcut.py:19
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
msgid "Import URL"
msgstr "导入URL"
-#: buzz/widgets/import_url_dialog.py:22
+#: buzz/widgets/import_url_dialog.py
msgid "https://example.com/audio.mp3"
msgstr "https://example.com/audio.mp3"
-#: buzz/widgets/import_url_dialog.py:28
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:69
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:245
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:97
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:295
-#: buzz/widgets/main_window.py:234
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
msgid "Ok"
msgstr "Ok"
-#: buzz/widgets/import_url_dialog.py:29
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:70
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:246
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:296
-#: buzz/widgets/model_download_progress_dialog.py:29
-#: buzz/widgets/main_window.py:235
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
msgid "Cancel"
msgstr "取消"
-#: buzz/widgets/import_url_dialog.py:34
+#: buzz/widgets/import_url_dialog.py
msgid "URL:"
msgstr "网址:"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "Invalid URL"
msgstr "无效的网址"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "The URL you entered is invalid."
msgstr "输入的网址无效"
-#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py:29
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "实时识别展示"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
msgid "Reset to Defaults"
msgstr "恢复默认"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:52
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "英语"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "加泰罗尼亚语"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "丹麦语"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "荷兰语"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "德语"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "西班牙语"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "意大利语"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "日语"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "拉脱维亚语"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "波兰语"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "葡萄牙语(巴西)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "乌克兰语"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "中文(简体)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "中文(繁体)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "需要重启!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "界面语言"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Font Size"
msgstr "字体大小"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:61
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Test"
msgstr "测试"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:67
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API key"
msgstr "OpenAI API key"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:80
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI base url"
msgstr "OpenAI 基于 url"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:89
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "OpenAI API 模型"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Default export file name"
msgstr "默认输出文件名"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Enable live recording transcription export"
msgstr "启用实时录制转录导出"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:101
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:47
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:50
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Browse"
msgstr "浏览"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:120
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Export folder"
msgstr "导出文件夹"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:131
-#, fuzzy
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Live recording mode"
-msgstr "现场录制模式"
+msgstr "实时录制模式"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:156
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:162
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
+msgstr "注意:实时录制导出设置将在未来版本中移至实时录制界面的高级设置中。"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "使用8位量化以减少内存占用"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
+msgstr ""
+"适用于 Huggingface 和 Faster Whisper 模型。可减少 GPU 内存占用,但可能略微降"
+"低转录质量。"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "减少 GPU 内存"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "仅使用 CPU 并禁用 GPU 加速"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr "如果较大的模型无法适配您的 GPU 内存且 Buzz 崩溃,请启用此选项"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "禁用 GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API Key Test"
msgstr "测试OpenAI API Key"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:157
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"Your API key is valid. Buzz will use this key to perform Whisper API "
"transcriptions and AI translations."
-msgstr ""
-“您的API密钥有效。Buzz将使用此密钥执行 Whisper API 识别和 AI 翻译。”
+msgstr "您的API密钥有效。Buzz将使用此密钥执行 Whisper API 识别和 AI 翻译。"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:173
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Invalid API key"
msgstr "无效的API key"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:174
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
-"API supports only base64 characters (A-Za-z0-9+/=). Other characters in API "
-"key may cause errors."
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
msgstr ""
-"API只支持 base64字符(A-Za-z0-9+/=)。其他字符在API密钥中可能导致错误。"
+"API只支持 base64字符(A-Za-z0-9+/=_-)。其他字符在API密钥中可能导致错误。"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:192
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Select Export Folder"
msgstr "选择输出文件夹"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:244
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"OpenAI API returned invalid response. Please check the API url or your key. "
"Transcription and translation may still work if the API does not support key "
"validation."
msgstr ""
-"OpenAI API返回无效响应。请检查API网址或您的密钥。"
-“如果API不支持密钥,识别和翻译可能仍然有效”
+"OpenAI API返回无效响应。请检查API网址或您的密钥。如果API不支持密钥验证,转录"
+"和翻译可能仍然有效翻"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:42
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Enable folder watch"
-msgstr "开启文件夹查看"
+msgstr "开启文件夹监控"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "删除已处理的文件"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Input folder"
-msgstr "导入文件夹"
+msgstr "输入文件夹"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Output folder"
-msgstr "导出文件夹"
+msgstr "输出文件夹"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:105
-#, fuzzy
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Input Folder"
-msgstr "选择导入文件夹"
+msgstr "选择输入文件夹"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:114
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Output Folder"
msgstr "选择输出文件夹"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:43
-#, fuzzy
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Preferences"
msgstr "偏好设置"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:50
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "General"
msgstr "通用"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:53
-#, fuzzy
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Models"
msgstr "模型"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:57
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Shortcuts"
msgstr "快捷键"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:63
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Folder Watch"
-msgstr "文档查看"
+msgstr "文件夹查看"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:70
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Group"
msgstr "组"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:82
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Huggingface ID of a Faster whisper model"
msgstr "较快的Whisper模型的Huggingface ID"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:94
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download"
msgstr "下载"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:99
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Show file location"
msgstr "查看文件位置"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:107
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete"
msgstr "删除"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:138
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Downloaded"
-msgstr "已下载的"
+msgstr "已下载"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:143
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Available for Download"
msgstr "可用的下载"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:164
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download link to Whisper.cpp ggml model file"
msgstr "Whisper.cpp ggml 模型文件的下载链接"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:239
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete Model"
msgstr "删除模型"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:240
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Are you sure you want to delete the selected model?"
-msgstr "您确定要删除所选录制吗?"
+msgstr "您确定要删除所选模型吗?"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:268
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download failed"
-msgstr "下载模型失败"
+msgstr "下载失败"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:269
-#: buzz/widgets/main_window.py:291 buzz/model_loader.py:503
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
msgid "Error"
msgstr "错误"
-#: buzz/widgets/record_button.py:10 buzz/widgets/record_button.py:17
-#: buzz/widgets/main_window_toolbar.py:35
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
msgid "Record"
msgstr "录制"
-#: buzz/widgets/record_button.py:21
+#: buzz/widgets/record_button.py
msgid "Stop"
msgstr "停止"
-#: buzz/widgets/transcriber/languages_combo_box.py:35
-#: buzz/transcriber/transcriber.py:159
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
msgid "Detect Language"
msgstr "检测语言"
-#: buzz/widgets/transcriber/file_transcriber_widget.py:79
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "例如:eng, fra, deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"输入 ISO 639-3 语言代码(3个字母)。\n"
+"示例:eng(英语), fra(法语), deu(德语),\n"
+"spa(西班牙语), lav(拉脱维亚语)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
msgid "Run"
msgstr "开始执行"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:92
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Model:"
msgstr "模型:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:104
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
msgid "First time use of a model may take up to several minutest to load."
-msgstr ""
+msgstr "首次使用模型可能需要几分钟的时间才能加载"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:113
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Api Key:"
msgstr "Api Key:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:114
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Task:"
msgstr "任务:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:115
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Language:"
msgstr "语言:"
-#: buzz/widgets/transcriber/initial_prompt_text_edit.py:10
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
msgid "Enter prompt..."
msgstr "请输入文本..."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:33
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Advanced Settings"
msgstr "高级设置"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:37
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Speech recognition settings"
msgstr "语音识别设置"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:46
-msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-msgstr "逗号分隔,例如\"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:55
-msgid "Temperature:"
-msgstr ""
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:66
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Initial Prompt:"
msgstr "初始提示:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:68
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Translation settings"
msgstr "翻译设置"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:72
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Enable AI translation"
msgstr "启用AI翻译"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:84
-#, fuzzy
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "AI model:"
msgstr "AI 模型:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:88
-msgid "Enter instructions for AI on how to translate..."
-msgstr "输入AI如何翻译的说明..."
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
+msgstr ""
+"请将发送给您的每段文本从英语翻译成西班牙语。翻译将用于自动化系统,请不要添加"
+"任何评论或备注,只需提供翻译即可。"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:92
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Instructions for AI:"
msgstr "AI说明:"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:42
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "录制设置"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "静音阈值:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "实时录制模式:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "行分隔符:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "转录步长:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "隐藏未确认内容"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "启用实时录制导出"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "导出文件夹:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "导出文件名:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "文本文件 (.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV (.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "导出文件类型:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"限制导出条目数\n"
+"(0 = 全部导出):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Word-level timings"
msgstr "逐词识别"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:66
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "提取语音"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Export:"
msgstr "导出:"
-#: buzz/widgets/transcriber/hugging_face_search_line_edit.py:37
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
msgid "Huggingface ID of a model"
msgstr "模型的Huggingface ID "
-#: buzz/widgets/transcriber/advanced_settings_button.py:9
+#: buzz/widgets/transcriber/advanced_settings_button.py
msgid "Advanced..."
msgstr "高级..."
-#: buzz/widgets/main_window_toolbar.py:39
-msgid "New Transcription"
-msgstr "新识别"
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "新增文件识别"
-#: buzz/widgets/main_window_toolbar.py:46
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "新增URL识别"
+
+#: buzz/widgets/main_window_toolbar.py
msgid "Open Transcript"
msgstr "打开识别结果"
-#: buzz/widgets/main_window_toolbar.py:52 buzz/settings/shortcut.py:27
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
msgid "Cancel Transcription"
msgstr "取消识别"
-#: buzz/widgets/main_window_toolbar.py:60 buzz/widgets/main_window.py:223
-#: buzz/settings/shortcut.py:26
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
msgid "Clear History"
msgstr "清除历史纪录"
-#: buzz/widgets/transcription_tasks_table_widget.py:64
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "有可用更新"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "In Progress"
msgstr "运行中"
-#: buzz/widgets/transcription_tasks_table_widget.py:67
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Completed"
msgstr "完成"
-#: buzz/widgets/transcription_tasks_table_widget.py:74
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Failed"
msgstr "失败"
-#: buzz/widgets/transcription_tasks_table_widget.py:77
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Canceled"
msgstr "取消"
-#: buzz/widgets/transcription_tasks_table_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Queued"
msgstr "队列中"
-#: buzz/widgets/transcription_tasks_table_widget.py:86
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "File Name / URL"
msgstr "文件名称/URL"
-#: buzz/widgets/transcription_tasks_table_widget.py:98
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Model"
msgstr "模型"
-#: buzz/widgets/transcription_tasks_table_widget.py:107
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Task"
-msgstr "任务:"
+msgstr "任务"
-#: buzz/widgets/transcription_tasks_table_widget.py:116
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Status"
msgstr "状态"
-#: buzz/widgets/transcription_tasks_table_widget.py:124
-msgid "Date Added"
-msgstr "添加日期"
-
-#: buzz/widgets/transcription_tasks_table_widget.py:135
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Date Completed"
msgstr "完成时间"
-#: buzz/widgets/recording_transcriber_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "添加日期"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "备注"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "重置列顺序"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "重新开始识别"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "重命名"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "添加/编辑备注"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "重命名识别"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "输入新名称:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "为此识别输入相关备注:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "无法重新开始"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr "只有失败或已取消的识别才能重新开始。"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "重新开始识别失败:{}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr "无法重新开始识别:模型不可用且无法下载。"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr "无法重新开始识别:未找到识别工作进程。"
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Live Recording"
msgstr "实时录制"
-#: buzz/widgets/recording_transcriber_widget.py:144
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Click Record to begin..."
msgstr "点击开始录制"
-#: buzz/widgets/recording_transcriber_widget.py:147
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Waiting for AI translation..."
-msgstr "等待AI翻译"
+msgstr "等待AI翻译..."
-#: buzz/widgets/recording_transcriber_widget.py:159
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Microphone:"
msgstr "麦克风:"
-#: buzz/widgets/recording_transcriber_widget.py:523
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "在新窗口中显示"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "文字大小:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "主题"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "浅色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "深色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "自定义"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "文字颜色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "背景颜色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "全屏"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "复制"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "复制识别内容到剪贴板"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "没有可复制的内容!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "复制失败"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "已复制!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "选择文字颜色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "选择背景颜色"
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "An error occurred while starting a new recording:"
msgstr "开始新录制时出错"
-#: buzz/widgets/recording_transcriber_widget.py:527
+#: buzz/widgets/recording_transcriber_widget.py
msgid ""
"Please check your audio devices or check the application logs for more "
"information."
msgstr "请检查您的音频设备或检查应用程序日志以获取更多信息。"
-#: buzz/widgets/about_dialog.py:80
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "Buzz 有新版本可用!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "当前版本:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "新版本:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "发行说明:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "下载并安装"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "您的平台没有可用的下载链接。"
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "正在下载第 {} 个文件,共 {} 个..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "正在下载第 {} 个文件,共 {} 个({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "下载失败"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "下载更新失败:{}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "无法保存安装程序:{}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "下载完成!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "无法运行安装程序:{}"
+
+#: buzz/widgets/about_dialog.py
msgid "Check for updates"
msgstr "检查更新"
-#: buzz/widgets/about_dialog.py:109
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "显示日志"
+
+#: buzz/widgets/about_dialog.py
msgid "You're up to date!"
msgstr "已经是最新版本"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:93
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "平均音量"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "队列"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "Start"
msgstr "开始"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:94
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "End"
msgstr "结束"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:95
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:34
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:30
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text"
msgstr "文本"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:96
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:40
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:31
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:64
-#, fuzzy
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Translation"
msgstr "翻译"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:26
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "View"
msgstr "查看"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:46
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "Timestamps"
msgstr "时间戳"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:156
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Export"
msgstr "导出"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:170
-#: buzz/transcriber/transcriber.py:24
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Translate"
msgstr "翻译"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:180
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Resize"
msgstr "调整大小"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:279
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "识别说话人"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "查找"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "显示/隐藏搜索栏(Ctrl+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "查找:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "输入要查找的文本..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "上一个匹配项(Shift+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "下一个匹配项(Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "清除"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "播放控制:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "循环片段"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr "点击识别片段时启用/禁用循环播放"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "跟随音频"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr "在识别文本中启用/禁用跟随当前音频位置。启用后,自动滚动到当前文本。"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "滚动到当前位置"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "滚动到当前正在播放的文本"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "第1项,共100+个匹配项"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "第1项,共"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr "个匹配项"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "未找到匹配项"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr "项,共100+个匹配项"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr "项,共"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "API Key Required"
msgstr "需要API Key"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:280
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Please enter OpenAI API Key in preferences"
msgstr "请在偏好设置中输入OpenAI API Key"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:297
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "延长结束时间"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "最多延长结束时间(秒)"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "延长结尾"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "调整大小选项"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Desired subtitle length"
msgstr "所需字幕长度"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:298
-msgid "Enter target characters per subtitle:"
-msgstr "为每个字幕输入目标字符:"
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
+msgstr "仅在转录时禁用逐词时间戳时可用"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:78
-#, fuzzy
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "合并选项"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "按间隔合并"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "按标点符号拆分"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "按最大长度拆分"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "合并"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr "仅在转录时启用逐词时间戳时可用"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr "说话人识别不可用:加载所需库失败。"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 收集识别文本"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 加载音频"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 加载对齐模型"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr "3/8 加载对齐模型(正在使用缓存重试...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr "加载对齐模型失败。请检查您的网络连接后重试。"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 处理音频"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 准备识别文本"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 识别说话人"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 将说话人映射到识别文本"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 识别完成"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 识别说话人时出错"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "第1步:识别说话人"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "识别"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "准备好识别说话人"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "未找到音频文件"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "第2步:命名说话人"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "播放样本"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "合并说话人句子"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "保存"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "正在取消..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "已取消"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Save File"
msgstr "保存文件"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:80
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text files"
msgstr "文本文件"
-#: buzz/widgets/snap_notice.py:9
-msgid "Snap permission notice"
-msgstr "快照权限通知"
-
-#: buzz/widgets/snap_notice.py:13
-msgid ""
-"Detected missing permissions, please check that snap permissions have been "
-"granted"
-msgstr "检测到缺少权限,请检查是否已获得快照权限"
-
-#: buzz/widgets/snap_notice.py:16
-msgid ""
-"To enable necessary permissions run the following commands in the terminal"
-msgstr "要启用必要的权限,请在终端中运行以下命令"
-
-#: buzz/widgets/snap_notice.py:30
-msgid "Close"
-msgstr "关闭"
-
-#: buzz/widgets/model_download_progress_dialog.py:36
-#, fuzzy
+#: buzz/widgets/model_download_progress_dialog.py
msgid "Downloading model"
-msgstr "下载模型"
+msgstr "模型下载中"
-#: buzz/widgets/model_download_progress_dialog.py:37
+#: buzz/widgets/model_download_progress_dialog.py
msgid "remaining"
msgstr "剩余"
-#: buzz/widgets/menu_bar.py:38
-#, fuzzy
+#: buzz/widgets/menu_bar.py
msgid "Import File..."
-msgstr "导入媒体文件..."
+msgstr "导入文件..."
-#: buzz/widgets/menu_bar.py:41
-#, fuzzy
+#: buzz/widgets/menu_bar.py
msgid "Import URL..."
-msgstr "导入媒体文件..."
+msgstr "导入URL..."
-#: buzz/widgets/menu_bar.py:44
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "导入文件夹..."
+
+#: buzz/widgets/menu_bar.py
msgid "About"
msgstr "关于"
-#: buzz/widgets/menu_bar.py:48
+#: buzz/widgets/menu_bar.py
msgid "Preferences..."
-msgstr "偏好设定..."
+msgstr "偏好设置..."
-#: buzz/widgets/menu_bar.py:51 buzz/widgets/menu_bar.py:61
+#: buzz/widgets/menu_bar.py
msgid "Help"
msgstr "帮助"
-#: buzz/widgets/menu_bar.py:57
+#: buzz/widgets/menu_bar.py
msgid "File"
msgstr "文件"
-#: buzz/widgets/main_window.py:227
+#: buzz/widgets/main_window.py
msgid ""
"Are you sure you want to delete the selected transcription(s)? This action "
"cannot be undone."
msgstr "您确定要删除所选录制吗?此操作无法撤消。"
-#: buzz/widgets/main_window.py:255
+#: buzz/widgets/main_window.py
msgid "Select audio file"
msgstr "选择音频文件"
-#: buzz/widgets/main_window.py:291
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "选择输入文件夹"
+
+#: buzz/widgets/main_window.py
msgid "Unable to save OpenAI API key to keyring"
msgstr "无法将OpenAI API密钥保存到密钥串"
-#: buzz/transcriber/transcriber.py:25
-#, fuzzy
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr "Whisper 服务器启动失败。请查看日志以获取详情。"
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"Whisper 服务器因内存不足而启动失败。请尝试使用较小的模型。如需强制使用 CPU 模"
+"式,请设置环境变量 BUZZ_FORCE_CPU=TRUE。"
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "翻译成英语"
+
+#: buzz/transcriber/transcriber.py
msgid "Transcribe"
msgstr "识别"
-#: buzz/model_loader.py:532
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "中文"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "俄语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "韩语"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "法语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "葡萄牙语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "土耳其语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "阿拉伯语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "瑞典语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "印度尼西亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "印地语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "芬兰语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "越南语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "希伯来语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "希腊语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "马来语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "捷克语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "罗马尼亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "匈牙利语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "泰米尔语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "挪威语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "泰语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "乌尔都语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "克罗地亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "保加利亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "立陶宛语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "拉丁语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "毛利语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "马拉雅拉姆语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "威尔士语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "斯洛伐克语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "泰卢固语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "波斯语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "孟加拉语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "塞尔维亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "阿塞拜疆语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "斯洛文尼亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "卡纳达语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "爱沙尼亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "马其顿语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "布列塔尼语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "巴斯克语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "冰岛语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "亚美尼亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "尼泊尔语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "蒙古语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "波斯尼亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "哈萨克语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "阿尔巴尼亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "斯瓦希里语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "加利西亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "马拉地语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "旁遮普语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "僧伽罗语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "高棉语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "绍纳语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "约鲁巴语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "索马里语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "南非荷兰语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "奥克语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "格鲁吉亚语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "白俄罗斯语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "塔吉克语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "信德语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "古吉拉特语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "阿姆哈拉语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "意第绪语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "老挝语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "乌兹别克语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "法罗语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "海地克里奥尔语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "普什图语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "土库曼语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "新挪威语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "马耳他语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "梵语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "卢森堡语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "缅甸语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "藏语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "他加禄语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "马达加斯加语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "阿萨姆语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "鞑靼语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "夏威夷语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "林加拉语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "豪萨语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "巴什基尔语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "爪哇语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "巽他语"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "粤语"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
msgid "A connection error occurred"
msgstr "连接发生错误"
-#: buzz/settings/shortcut.py:17
-#, fuzzy
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "正在启动 Whisper.cpp..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "正在开始识别..."
+
+#: buzz/settings/shortcut.py
msgid "Open Record Window"
msgstr "打开录制窗口"
-#: buzz/settings/shortcut.py:18
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "Import File"
msgstr "导入文件"
-#: buzz/settings/shortcut.py:20
+#: buzz/settings/shortcut.py
msgid "Open Preferences Window"
msgstr "打开偏好设置窗口"
-#: buzz/settings/shortcut.py:22
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Text"
msgstr "查看识别的文本"
-#: buzz/settings/shortcut.py:23
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Translation"
msgstr "查看识别的翻译"
-#: buzz/settings/shortcut.py:24
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Timestamps"
-msgstr "查看转录时间戳"
+msgstr "查看识别时间戳"
-#: buzz/settings/recording_transcriber_mode.py:5
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "搜索识别内容"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "转到下一个识别搜索结果"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "转到上一个识别搜索结果"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "滚动到当前文本"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "播放/暂停音频"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "重播当前片段"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "切换播放控制"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "减少片段开始时间"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "增加片段开始时间"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "减少片段结束时间"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "增加片段结束时间"
+
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append below"
msgstr "增加下方"
-#: buzz/settings/recording_transcriber_mode.py:6
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append above"
msgstr "增加上方"
-#: buzz/settings/recording_transcriber_mode.py:7
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append and correct"
msgstr "增加并纠正"
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
+msgstr "语音提取失败!请检查您的网络连接——可能需要下载模型。"
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "逗号分隔,例如\"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+
+#~ msgid "Temperature:"
+#~ msgstr "温度:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr "请将发送给您的每段文本从英语翻译成西班牙语。"
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "翻译出错,请查看日志!"
+
+#~ msgid "Snap permission notice"
+#~ msgstr "快照权限通知"
+
+#~ msgid ""
+#~ "Detected missing permissions, please check that snap permissions have "
+#~ "been granted"
+#~ msgstr "检测到缺少权限,请检查是否已获得快照权限"
+
+#~ msgid ""
+#~ "To enable necessary permissions run the following commands in the terminal"
+#~ msgstr "要启用必要的权限,请在终端中运行以下命令"
+
+#~ msgid "Close"
+#~ msgstr "关闭"
+
+#~ msgid "Enter instructions for AI on how to translate..."
+#~ msgstr "输入AI如何翻译的说明..."
+
+#~ msgid "Enter target characters per subtitle:"
+#~ msgstr "为每个字幕输入目标字符:"
+
#~ msgid "ID"
#~ msgstr "ID"
diff --git a/buzz/locale/zh_TW/LC_MESSAGES/buzz.po b/buzz/locale/zh_TW/LC_MESSAGES/buzz.po
index 28a8dad0..93d4afcf 100644
--- a/buzz/locale/zh_TW/LC_MESSAGES/buzz.po
+++ b/buzz/locale/zh_TW/LC_MESSAGES/buzz.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-11-03 08:32+0200\n"
+"POT-Creation-Date: 2026-03-07 20:20+0200\n"
"PO-Revision-Date: 2023-05-01 15:45+0800\n"
"Last-Translator: \n"
"Language-Team: Lamb\n"
@@ -17,598 +17,1610 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.2.2\n"
-#: buzz/widgets/import_url_dialog.py:19 buzz/settings/shortcut.py:19
+#: buzz/widgets/import_url_dialog.py buzz/settings/shortcut.py
msgid "Import URL"
-msgstr ""
+msgstr "匯入網址"
-#: buzz/widgets/import_url_dialog.py:22
+#: buzz/widgets/import_url_dialog.py
msgid "https://example.com/audio.mp3"
-msgstr ""
+msgstr "https://example.com/audio.mp3"
-#: buzz/widgets/import_url_dialog.py:28
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:69
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:245
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:97
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:295
-#: buzz/widgets/main_window.py:234
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+#: buzz/widgets/main_window.py
msgid "Ok"
-msgstr ""
+msgstr "確定"
-#: buzz/widgets/import_url_dialog.py:29
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:70
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:246
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:296
-#: buzz/widgets/model_download_progress_dialog.py:29
-#: buzz/widgets/main_window.py:235
+#: buzz/widgets/import_url_dialog.py
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+#: buzz/widgets/model_download_progress_dialog.py buzz/widgets/main_window.py
msgid "Cancel"
msgstr "取消"
-#: buzz/widgets/import_url_dialog.py:34
+#: buzz/widgets/import_url_dialog.py
msgid "URL:"
-msgstr ""
+msgstr "網址:"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "Invalid URL"
-msgstr ""
+msgstr "無效的網址"
-#: buzz/widgets/import_url_dialog.py:44
+#: buzz/widgets/import_url_dialog.py
msgid "The URL you entered is invalid."
-msgstr ""
+msgstr "您輸入的網址無效。"
-#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py:29
+#: buzz/widgets/presentation_window.py
+msgid "Live Transcript Presentation"
+msgstr "即時轉錄簡報"
+
+#: buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
msgid "Reset to Defaults"
-msgstr ""
+msgstr "重設為預設值"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:52
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "English"
+msgstr "英語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Catalan"
+msgstr "加泰隆尼亞語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Danish"
+msgstr "丹麥語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Dutch"
+msgstr "荷蘭語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "German"
+msgstr "德語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Spanish"
+msgstr "西班牙語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Italian"
+msgstr "義大利語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Japanese"
+msgstr "日語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Latvian"
+msgstr "拉脫維亞語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Polish"
+msgstr "波蘭語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Portuguese (Brazil)"
+msgstr "葡萄牙語(巴西)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/transcriber/transcriber.py
+msgid "Ukrainian"
+msgstr "烏克蘭語"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Simplified)"
+msgstr "中文(簡體)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Chinese (Traditional)"
+msgstr "中文(繁體)"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Restart required!"
+msgstr "需要重新啟動!"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Ui Language"
+msgstr "介面語言"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Font Size"
-msgstr ""
+msgstr "字體大小"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:61
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Test"
-msgstr ""
+msgstr "測試"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:67
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI API key"
-msgstr ""
+msgstr "OpenAI API 金鑰"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:80
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "OpenAI base url"
-msgstr ""
+msgstr "OpenAI 基礎網址"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:89
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API model"
+msgstr "OpenAI API 模型"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Default export file name"
-msgstr ""
+msgstr "預設匯出檔案名稱"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Enable live recording transcription export"
-msgstr ""
+msgstr "啟用即時錄製轉錄匯出"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:101
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:47
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:50
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Browse"
-msgstr ""
+msgstr "瀏覽"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:120
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Export folder"
-msgstr ""
+msgstr "匯出資料夾"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:131
-#, fuzzy
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Live recording mode"
-msgstr "現場錄製"
+msgstr "即時錄製模式"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:156
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:162
-msgid "OpenAI API Key Test"
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Note: Live recording export settings will be moved to the Advanced Settings "
+"in the Live Recording screen in a future version."
+msgstr "注意:即時錄製匯出設定將在未來版本中移至即時錄製畫面的進階設定中。"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use 8-bit quantization to reduce memory usage"
+msgstr "使用 8 位元量化以降低記憶體使用量"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid ""
+"Applies to Huggingface and Faster Whisper models. Reduces GPU memory usage "
+"but may slightly decrease transcription quality."
msgstr ""
+"適用於 Huggingface 和 Faster Whisper 模型。可降低 GPU 記憶體使用量,但可能略"
+"微降低轉錄品質。"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:157
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Reduce GPU RAM"
+msgstr "降低 GPU 記憶體"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Use only CPU and disable GPU acceleration"
+msgstr "僅使用 CPU 並停用 GPU 加速"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Set this if larger models do not fit your GPU memory and Buzz crashes"
+msgstr "若較大的模型無法放入 GPU 記憶體且 Buzz 當機,請啟用此選項"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "Disable GPU"
+msgstr "停用 GPU"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+msgid "OpenAI API Key Test"
+msgstr "OpenAI API 金鑰測試"
+
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"Your API key is valid. Buzz will use this key to perform Whisper API "
"transcriptions and AI translations."
-msgstr ""
+msgstr "您的 API 金鑰有效。Buzz 將使用此金鑰執行 Whisper API 轉錄和 AI 翻譯。"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:173
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid "Invalid API key"
-msgstr ""
+msgstr "無效的 API 金鑰"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:174
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
-"API supports only base64 characters (A-Za-z0-9+/=). Other characters in API "
-"key may cause errors."
+"API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in "
+"API key may cause errors."
msgstr ""
+"API 僅支援 base64 字元(A-Za-z0-9+/=_-)。API 金鑰中的其他字元可能會導致錯"
+"誤。"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:192
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Select Export Folder"
-msgstr ""
+msgstr "選擇匯出資料夾"
-#: buzz/widgets/preferences_dialog/general_preferences_widget.py:244
+#: buzz/widgets/preferences_dialog/general_preferences_widget.py
msgid ""
"OpenAI API returned invalid response. Please check the API url or your key. "
"Transcription and translation may still work if the API does not support key "
"validation."
msgstr ""
+"OpenAI API 傳回無效回應。請檢查 API 網址或您的金鑰。若 API 不支援金鑰驗證,轉"
+"錄和翻譯仍可能正常運作。"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:42
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Enable folder watch"
-msgstr ""
+msgstr "啟用資料夾監視"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:94
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+msgid "Delete processed files"
+msgstr "刪除已處理的檔案"
+
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Input folder"
-msgstr ""
+msgstr "輸入資料夾"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:95
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Output folder"
-msgstr ""
+msgstr "輸出資料夾"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:105
-#, fuzzy
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Input Folder"
-msgstr "選擇聲音檔案"
+msgstr "選擇輸入資料夾"
-#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py:114
+#: buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
msgid "Select Output Folder"
-msgstr ""
+msgstr "選擇輸出資料夾"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:43
-#, fuzzy
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Preferences"
-msgstr "偏好設定..."
+msgstr "偏好設定"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:50
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "General"
-msgstr ""
+msgstr "一般"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:53
-#, fuzzy
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Models"
-msgstr "模型:"
+msgstr "模型"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:57
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Shortcuts"
-msgstr ""
+msgstr "快捷鍵"
-#: buzz/widgets/preferences_dialog/preferences_dialog.py:63
+#: buzz/widgets/preferences_dialog/preferences_dialog.py
msgid "Folder Watch"
-msgstr ""
+msgstr "資料夾監視"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:70
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Group"
-msgstr ""
+msgstr "群組"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:82
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Huggingface ID of a Faster whisper model"
-msgstr ""
+msgstr "Faster Whisper 模型的 Huggingface ID"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:94
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download"
-msgstr "下載模型"
+msgstr "下載"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:99
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Show file location"
-msgstr ""
+msgstr "顯示檔案位置"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:107
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete"
-msgstr ""
+msgstr "刪除"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:138
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Downloaded"
-msgstr "下載模型"
+msgstr "已下載"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:143
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Available for Download"
-msgstr ""
+msgstr "可供下載"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:164
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download link to Whisper.cpp ggml model file"
-msgstr ""
+msgstr "Whisper.cpp ggml 模型檔案的下載連結"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:239
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Delete Model"
-msgstr ""
+msgstr "刪除模型"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:240
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Are you sure you want to delete the selected model?"
-msgstr "您確定要刪除所選錄製嗎?此操作無法撤消。"
+msgstr "您確定要刪除所選模型嗎?"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:268
-#, fuzzy
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
msgid "Download failed"
-msgstr "下載模型"
+msgstr "下載失敗"
-#: buzz/widgets/preferences_dialog/models_preferences_widget.py:269
-#: buzz/widgets/main_window.py:291 buzz/model_loader.py:503
+#: buzz/widgets/preferences_dialog/models_preferences_widget.py
+#: buzz/widgets/transcription_tasks_table_widget.py
+#: buzz/widgets/update_dialog.py buzz/widgets/main_window.py
+#: buzz/model_loader.py
msgid "Error"
-msgstr ""
+msgstr "錯誤"
-#: buzz/widgets/record_button.py:10 buzz/widgets/record_button.py:17
-#: buzz/widgets/main_window_toolbar.py:35
+#: buzz/widgets/record_button.py buzz/widgets/main_window_toolbar.py
msgid "Record"
msgstr "錄製"
-#: buzz/widgets/record_button.py:21
+#: buzz/widgets/record_button.py
msgid "Stop"
msgstr "停止"
-#: buzz/widgets/transcriber/languages_combo_box.py:35
-#: buzz/transcriber/transcriber.py:159
+#: buzz/widgets/transcriber/languages_combo_box.py
+#: buzz/transcriber/transcriber.py
msgid "Detect Language"
msgstr "檢測語言"
-#: buzz/widgets/transcriber/file_transcriber_widget.py:79
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid "e.g., eng, fra, deu"
+msgstr "例如:eng、fra、deu"
+
+#: buzz/widgets/transcriber/mms_language_line_edit.py
+msgid ""
+"Enter an ISO 639-3 language code (3 letters).\n"
+"Examples: eng (English), fra (French), deu (German),\n"
+"spa (Spanish), lav (Latvian)"
+msgstr ""
+"請輸入 ISO 639-3 語言代碼(3 個字母)。\n"
+"範例:eng(英語)、fra(法語)、deu(德語)、\n"
+"spa(西班牙語)、lav(拉脫維亞語)"
+
+#: buzz/widgets/transcriber/file_transcriber_widget.py
msgid "Run"
msgstr "開始執行"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:92
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Model:"
msgstr "模型:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:104
+#: buzz/widgets/transcriber/transcription_options_group_box.py
+#: buzz/transcriber/recording_transcriber.py
msgid "First time use of a model may take up to several minutest to load."
-msgstr ""
+msgstr "首次使用模型最多可能需要數分鐘載入。"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:113
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Api Key:"
-msgstr ""
+msgstr "API 金鑰:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:114
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Task:"
msgstr "任務:"
-#: buzz/widgets/transcriber/transcription_options_group_box.py:115
+#: buzz/widgets/transcriber/transcription_options_group_box.py
msgid "Language:"
msgstr "語言:"
-#: buzz/widgets/transcriber/initial_prompt_text_edit.py:10
+#: buzz/widgets/transcriber/initial_prompt_text_edit.py
msgid "Enter prompt..."
-msgstr ""
+msgstr "輸入提示..."
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:33
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Advanced Settings"
msgstr "進階設定"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:37
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Speech recognition settings"
-msgstr ""
+msgstr "語音識別設定"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:46
-msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-msgstr "逗號分隔,例如\"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:55
-msgid "Temperature:"
-msgstr "溫度:"
-
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:66
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Initial Prompt:"
msgstr "初始提示:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:68
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Translation settings"
-msgstr ""
+msgstr "翻譯設定"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:72
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Enable AI translation"
-msgstr ""
+msgstr "啟用 AI 翻譯"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:84
-#, fuzzy
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "AI model:"
-msgstr "模型:"
+msgstr "AI 模型:"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:88
-msgid "Enter instructions for AI on how to translate..."
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Please translate each text sent to you from English to Spanish. Translation "
+"will be used in an automated system, please do not add any comments or "
+"notes, just the translation."
msgstr ""
+"請將傳送給您的每段文字從英文翻譯成西班牙文。翻譯將用於自動化系統,請勿添加任"
+"何評論或備註,僅提供翻譯即可。"
-#: buzz/widgets/transcriber/advanced_settings_dialog.py:92
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
msgid "Instructions for AI:"
-msgstr ""
+msgstr "AI 指令:"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:42
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Recording settings"
+msgstr "錄製設定"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Silence threshold:"
+msgstr "靜音閾值:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Live recording mode:"
+msgstr "即時錄製模式:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Line separator:"
+msgstr "行分隔符號:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Transcription step:"
+msgstr "轉錄步長:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Hide unconfirmed"
+msgstr "隱藏未確認內容"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Enable live recording export"
+msgstr "啟用即時錄製匯出"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export folder:"
+msgstr "匯出資料夾:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file name:"
+msgstr "匯出檔案名稱:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Text file (.txt)"
+msgstr "文字檔案(.txt)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "CSV (.csv)"
+msgstr "CSV(.csv)"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid "Export file type:"
+msgstr "匯出檔案類型:"
+
+#: buzz/widgets/transcriber/advanced_settings_dialog.py
+msgid ""
+"Limit export entries\n"
+"(0 = export all):"
+msgstr ""
+"限制匯出筆數\n"
+"(0 = 全部匯出):"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Word-level timings"
msgstr "單字級別的時間表達"
-#: buzz/widgets/transcriber/file_transcription_form_widget.py:66
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
+msgid "Extract speech"
+msgstr "提取語音"
+
+#: buzz/widgets/transcriber/file_transcription_form_widget.py
msgid "Export:"
-msgstr ""
+msgstr "匯出:"
-#: buzz/widgets/transcriber/hugging_face_search_line_edit.py:37
+#: buzz/widgets/transcriber/hugging_face_search_line_edit.py
msgid "Huggingface ID of a model"
-msgstr ""
+msgstr "模型的 Huggingface ID"
-#: buzz/widgets/transcriber/advanced_settings_button.py:9
+#: buzz/widgets/transcriber/advanced_settings_button.py
msgid "Advanced..."
-msgstr ""
+msgstr "進階..."
-#: buzz/widgets/main_window_toolbar.py:39
-msgid "New Transcription"
-msgstr "新錄製"
+#: buzz/widgets/main_window_toolbar.py
+msgid "New File Transcription"
+msgstr "新增檔案轉錄"
-#: buzz/widgets/main_window_toolbar.py:46
+#: buzz/widgets/main_window_toolbar.py
+msgid "New URL Transcription"
+msgstr "新增網址轉錄"
+
+#: buzz/widgets/main_window_toolbar.py
msgid "Open Transcript"
msgstr "打開轉換結果"
-#: buzz/widgets/main_window_toolbar.py:52 buzz/settings/shortcut.py:27
+#: buzz/widgets/main_window_toolbar.py buzz/settings/shortcut.py
msgid "Cancel Transcription"
msgstr "取消錄製"
-#: buzz/widgets/main_window_toolbar.py:60 buzz/widgets/main_window.py:223
-#: buzz/settings/shortcut.py:26
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/main_window.py
+#: buzz/settings/shortcut.py
msgid "Clear History"
msgstr "清除歷史紀錄"
-#: buzz/widgets/transcription_tasks_table_widget.py:64
-msgid "In Progress"
-msgstr ""
+#: buzz/widgets/main_window_toolbar.py buzz/widgets/update_dialog.py
+msgid "Update Available"
+msgstr "有可用更新"
-#: buzz/widgets/transcription_tasks_table_widget.py:67
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "In Progress"
+msgstr "進行中"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Completed"
msgstr "完成"
-#: buzz/widgets/transcription_tasks_table_widget.py:74
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Failed"
-msgstr ""
+msgstr "失敗"
-#: buzz/widgets/transcription_tasks_table_widget.py:77
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Canceled"
msgstr "取消"
-#: buzz/widgets/transcription_tasks_table_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Queued"
-msgstr ""
+msgstr "排隊中"
-#: buzz/widgets/transcription_tasks_table_widget.py:86
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "File Name / URL"
-msgstr "檔案名稱"
+msgstr "檔案名稱 / 網址"
-#: buzz/widgets/transcription_tasks_table_widget.py:98
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Model"
-msgstr "模型:"
+msgstr "模型"
-#: buzz/widgets/transcription_tasks_table_widget.py:107
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Task"
-msgstr "任務:"
+msgstr "任務"
-#: buzz/widgets/transcription_tasks_table_widget.py:116
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Status"
msgstr "狀態"
-#: buzz/widgets/transcription_tasks_table_widget.py:124
-msgid "Date Added"
-msgstr ""
-
-#: buzz/widgets/transcription_tasks_table_widget.py:135
-#, fuzzy
+#: buzz/widgets/transcription_tasks_table_widget.py
msgid "Date Completed"
-msgstr "完成"
+msgstr "完成日期"
-#: buzz/widgets/recording_transcriber_widget.py:79
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Date Added"
+msgstr "新增日期"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Notes"
+msgstr "備註"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Reset Column Order"
+msgstr "重設欄位順序"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Restart Transcription"
+msgstr "重新開始轉錄"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename"
+msgstr "重新命名"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Add/Edit Notes"
+msgstr "新增/編輯備註"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Rename Transcription"
+msgstr "重新命名轉錄"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter new name:"
+msgstr "輸入新名稱:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Enter some relevant notes for this transcription:"
+msgstr "為此轉錄輸入相關備註:"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Cannot Restart"
+msgstr "無法重新開始"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Only failed or canceled transcriptions can be restarted."
+msgstr "只有失敗或已取消的轉錄才能重新開始。"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Failed to restart transcription: {}"
+msgstr "重新開始轉錄失敗:{}"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid ""
+"Could not restart transcription: model not available and could not be "
+"downloaded."
+msgstr "無法重新開始轉錄:模型不可用且無法下載。"
+
+#: buzz/widgets/transcription_tasks_table_widget.py
+msgid "Could not restart transcription: transcriber worker not found."
+msgstr "無法重新開始轉錄:找不到轉錄工作器。"
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Live Recording"
msgstr "現場錄製"
-#: buzz/widgets/recording_transcriber_widget.py:144
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Click Record to begin..."
msgstr "點擊開始錄製"
-#: buzz/widgets/recording_transcriber_widget.py:147
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Waiting for AI translation..."
-msgstr ""
+msgstr "等待 AI 翻譯..."
-#: buzz/widgets/recording_transcriber_widget.py:159
+#: buzz/widgets/recording_transcriber_widget.py
msgid "Microphone:"
msgstr "麥克風:"
-#: buzz/widgets/recording_transcriber_widget.py:523
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Show in new window"
+msgstr "在新視窗中顯示"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Size:"
+msgstr "文字大小:"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Theme"
+msgstr "主題"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Light"
+msgstr "淺色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Dark"
+msgstr "深色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Custom"
+msgstr "自訂"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Text Color"
+msgstr "文字顏色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Background Color"
+msgstr "背景顏色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Fullscreen"
+msgstr "全螢幕"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy"
+msgstr "複製"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy transcription to clipboard"
+msgstr "複製轉錄內容到剪貼簿"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Nothing to copy!"
+msgstr "沒有可複製的內容!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copy failed"
+msgstr "複製失敗"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Copied!"
+msgstr "已複製!"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Text Color"
+msgstr "選擇文字顏色"
+
+#: buzz/widgets/recording_transcriber_widget.py
+msgid "Select Background Color"
+msgstr "選擇背景顏色"
+
+#: buzz/widgets/recording_transcriber_widget.py
msgid "An error occurred while starting a new recording:"
msgstr "開始新錄製出錯"
-#: buzz/widgets/recording_transcriber_widget.py:527
+#: buzz/widgets/recording_transcriber_widget.py
msgid ""
"Please check your audio devices or check the application logs for more "
"information."
msgstr "請檢查您的音頻設備或檢查應用程序日誌以獲取更多信息。"
-#: buzz/widgets/about_dialog.py:80
+#: buzz/widgets/update_dialog.py
+msgid "A new version of Buzz is available!"
+msgstr "Buzz 有新版本可用!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Current version:"
+msgstr "目前版本:"
+
+#: buzz/widgets/update_dialog.py
+msgid "New version:"
+msgstr "新版本:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Release Notes:"
+msgstr "版本說明:"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download and Install"
+msgstr "下載並安裝"
+
+#: buzz/widgets/update_dialog.py
+msgid "No download URL available for your platform."
+msgstr "您的平台沒有可用的下載連結。"
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {}..."
+msgstr "正在下載第 {} 個檔案,共 {} 個..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Downloading file {} of {} ({:.1f} MB / {:.1f} MB)..."
+msgstr "正在下載第 {} 個檔案,共 {} 個({:.1f} MB / {:.1f} MB)..."
+
+#: buzz/widgets/update_dialog.py
+msgid "Download Failed"
+msgstr "下載失敗"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to download the update: {}"
+msgstr "下載更新失敗:{}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to save the installer: {}"
+msgstr "無法儲存安裝程式:{}"
+
+#: buzz/widgets/update_dialog.py
+msgid "Download complete!"
+msgstr "下載完成!"
+
+#: buzz/widgets/update_dialog.py
+msgid "Failed to run the installer: {}"
+msgstr "無法執行安裝程式:{}"
+
+#: buzz/widgets/about_dialog.py
msgid "Check for updates"
msgstr "檢查更新"
-#: buzz/widgets/about_dialog.py:109
+#: buzz/widgets/about_dialog.py
+msgid "Show logs"
+msgstr "顯示日誌"
+
+#: buzz/widgets/about_dialog.py
msgid "You're up to date!"
msgstr "你是最新的!"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:93
+#: buzz/widgets/audio_meter_widget.py
+msgid "Average volume"
+msgstr "平均音量"
+
+#: buzz/widgets/audio_meter_widget.py
+msgid "Queue"
+msgstr "佇列"
+
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "Start"
-msgstr ""
+msgstr "開始"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:94
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
msgid "End"
-msgstr ""
+msgstr "結束"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:95
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:34
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:30
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text"
-msgstr ""
+msgstr "文字"
-#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py:96
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:40
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:31
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:64
-#, fuzzy
+#: buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Translation"
-msgstr "新錄製"
+msgstr "翻譯"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:26
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "View"
-msgstr ""
+msgstr "檢視"
-#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py:46
+#: buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
msgid "Timestamps"
-msgstr ""
+msgstr "時間戳記"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:156
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Export"
-msgstr ""
+msgstr "匯出"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:170
-#: buzz/transcriber/transcriber.py:24
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Translate"
-msgstr ""
+msgstr "翻譯"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:180
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Resize"
-msgstr ""
+msgstr "調整大小"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:279
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Identify Speakers"
+msgstr "識別說話者"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find"
+msgstr "尋找"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Show/Hide Search Bar (Ctrl+F)"
+msgstr "顯示/隱藏搜尋列(Ctrl+F)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Find:"
+msgstr "尋找:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enter text to find..."
+msgstr "輸入要尋找的文字..."
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Previous match (Shift+Enter)"
+msgstr "上一個符合項目(Shift+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Next match (Ctrl+Enter)"
+msgstr "下一個符合項目(Ctrl+Enter)"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Clear"
+msgstr "清除"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Playback Controls:"
+msgstr "播放控制:"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Loop Segment"
+msgstr "循環片段"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Enable/disable looping when clicking on transcript segments"
+msgstr "點擊轉錄片段時啟用/停用循環播放"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Follow Audio"
+msgstr "跟隨音訊"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid ""
+"Enable/disable following the current audio position in the transcript. When "
+"enabled, automatically scrolls to current text."
+msgstr "啟用/停用在轉錄稿中跟隨目前音訊位置。啟用後,自動捲動至目前文字。"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to Current"
+msgstr "捲動至目前位置"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "Scroll to the currently spoken text"
+msgstr "捲動至目前正在說話的文字"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of 100+ matches"
+msgstr "100 個以上符合項目中的第 1 個"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "1 of "
+msgstr "第 1 個,共 "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " matches"
+msgstr " 個符合項目"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid "No matches found"
+msgstr "找不到符合項目"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of 100+ matches"
+msgstr ",共 100 個以上符合項目"
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+msgid " of "
+msgstr ",共 "
+
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "API Key Required"
-msgstr ""
+msgstr "需要 API 金鑰"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:280
+#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py
msgid "Please enter OpenAI API Key in preferences"
-msgstr ""
+msgstr "請在偏好設定中輸入 OpenAI API 金鑰"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:297
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend end time"
+msgstr "延長結束時間"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings by up to (seconds)"
+msgstr "最多延長結束時間(秒)"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Extend endings"
+msgstr "延長結尾"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Resize Options"
+msgstr "調整大小選項"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
msgid "Desired subtitle length"
-msgstr ""
+msgstr "理想字幕長度"
-#: buzz/widgets/transcription_viewer/transcription_viewer_widget.py:298
-msgid "Enter target characters per subtitle:"
-msgstr ""
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were disabled during transcription"
+msgstr "僅在轉錄時停用單字級別時間戳記時可用"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:78
-#, fuzzy
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge Options"
+msgstr "合併選項"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge by gap"
+msgstr "依間隔合併"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by punctuation"
+msgstr "依標點符號分割"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Split by max length"
+msgstr "依最大長度分割"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Merge"
+msgstr "合併"
+
+#: buzz/widgets/transcription_viewer/transcription_resizer_widget.py
+msgid "Available only if word level timings were enabled during transcription"
+msgstr "僅在轉錄時啟用單字級別時間戳記時可用"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Speaker identification is not available: failed to load required libraries."
+msgstr "說話者識別不可用:無法載入所需程式庫。"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "1/8 Collecting transcripts"
+msgstr "1/8 收集轉錄稿"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "2/8 Loading audio"
+msgstr "2/8 載入音訊"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model"
+msgstr "3/8 載入對齊模型"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "3/8 Loading alignment model (retrying with cache...)"
+msgstr "3/8 載入對齊模型(正在使用快取重試...)"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid ""
+"Failed to load alignment model. Please check your internet connection and "
+"try again."
+msgstr "無法載入對齊模型。請檢查您的網路連線並重試。"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "4/8 Processing audio"
+msgstr "4/8 處理音訊"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "5/8 Preparing transcripts"
+msgstr "5/8 準備轉錄稿"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "6/8 Identifying speakers"
+msgstr "6/8 識別說話者"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "7/8 Mapping speakers to transcripts"
+msgstr "7/8 將說話者對應到轉錄稿"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "8/8 Identification done"
+msgstr "8/8 識別完成"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "0/0 Error identifying speakers"
+msgstr "0/0 識別說話者時發生錯誤"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 1: Identify speakers"
+msgstr "步驟 1:識別說話者"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Identify"
+msgstr "識別"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Ready to identify speakers"
+msgstr "準備識別說話者"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Audio file not found"
+msgstr "找不到音訊檔案"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Step 2: Name speakers"
+msgstr "步驟 2:為說話者命名"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Play sample"
+msgstr "播放範例"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Merge speaker sentences"
+msgstr "合併說話者句子"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Save"
+msgstr "儲存"
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelling..."
+msgstr "取消中..."
+
+#: buzz/widgets/transcription_viewer/speaker_identification_widget.py
+msgid "Cancelled"
+msgstr "已取消"
+
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Save File"
-msgstr "檔案"
+msgstr "儲存檔案"
-#: buzz/widgets/transcription_viewer/export_transcription_menu.py:80
+#: buzz/widgets/transcription_viewer/export_transcription_menu.py
msgid "Text files"
-msgstr ""
+msgstr "文字檔案"
-#: buzz/widgets/snap_notice.py:9
-msgid "Snap permission notice"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:13
-msgid ""
-"Detected missing permissions, please check that snap permissions have been "
-"granted"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:16
-msgid ""
-"To enable necessary permissions run the following commands in the terminal"
-msgstr ""
-
-#: buzz/widgets/snap_notice.py:30
-msgid "Close"
-msgstr ""
-
-#: buzz/widgets/model_download_progress_dialog.py:36
-#, fuzzy
+#: buzz/widgets/model_download_progress_dialog.py
msgid "Downloading model"
-msgstr "下載模型"
+msgstr "正在下載模型"
-#: buzz/widgets/model_download_progress_dialog.py:37
+#: buzz/widgets/model_download_progress_dialog.py
msgid "remaining"
-msgstr ""
+msgstr "剩餘"
-#: buzz/widgets/menu_bar.py:38
-#, fuzzy
+#: buzz/widgets/menu_bar.py
msgid "Import File..."
-msgstr "導入媒體檔案..."
+msgstr "匯入檔案..."
-#: buzz/widgets/menu_bar.py:41
-#, fuzzy
+#: buzz/widgets/menu_bar.py
msgid "Import URL..."
-msgstr "導入媒體檔案..."
+msgstr "匯入網址..."
-#: buzz/widgets/menu_bar.py:44
+#: buzz/widgets/menu_bar.py
+msgid "Import Folder..."
+msgstr "導入資料夾..."
+
+#: buzz/widgets/menu_bar.py
msgid "About"
-msgstr ""
+msgstr "關於"
-#: buzz/widgets/menu_bar.py:48
+#: buzz/widgets/menu_bar.py
msgid "Preferences..."
msgstr "偏好設定..."
-#: buzz/widgets/menu_bar.py:51 buzz/widgets/menu_bar.py:61
+#: buzz/widgets/menu_bar.py
msgid "Help"
msgstr "幫助"
-#: buzz/widgets/menu_bar.py:57
+#: buzz/widgets/menu_bar.py
msgid "File"
msgstr "檔案"
-#: buzz/widgets/main_window.py:227
+#: buzz/widgets/main_window.py
msgid ""
"Are you sure you want to delete the selected transcription(s)? This action "
"cannot be undone."
msgstr "您確定要刪除所選錄製嗎?此操作無法撤消。"
-#: buzz/widgets/main_window.py:255
+#: buzz/widgets/main_window.py
msgid "Select audio file"
msgstr "選擇聲音檔案"
-#: buzz/widgets/main_window.py:291
+#: buzz/widgets/main_window.py
+msgid "Select folder"
+msgstr "選擇資料夾"
+
+#: buzz/widgets/main_window.py
msgid "Unable to save OpenAI API key to keyring"
-msgstr ""
+msgstr "無法將 OpenAI API 金鑰儲存至鑰匙圈"
-#: buzz/transcriber/transcriber.py:25
-#, fuzzy
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid "Whisper server failed to start. Check logs for details."
+msgstr "Whisper 伺服器啟動失敗。請查看日誌以了解詳情。"
+
+#: buzz/transcriber/local_whisper_cpp_server_transcriber.py
+#: buzz/transcriber/recording_transcriber.py
+msgid ""
+"Whisper server failed to start due to insufficient memory. Please try again "
+"with a smaller model. To force CPU mode use BUZZ_FORCE_CPU=TRUE environment "
+"variable."
+msgstr ""
+"Whisper 伺服器因記憶體不足而啟動失敗。請改用較小的模型重試。若要強制使用 CPU "
+"模式,請設定環境變數 BUZZ_FORCE_CPU=TRUE。"
+
+#: buzz/transcriber/transcriber.py
+msgid "Translate to English"
+msgstr "翻譯為英語"
+
+#: buzz/transcriber/transcriber.py
msgid "Transcribe"
-msgstr "打開轉換結果"
+msgstr "轉錄"
-#: buzz/model_loader.py:532
+#: buzz/transcriber/transcriber.py
+msgid "Chinese"
+msgstr "中文"
+
+#: buzz/transcriber/transcriber.py
+msgid "Russian"
+msgstr "俄語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Korean"
+msgstr "韓語"
+
+#: buzz/transcriber/transcriber.py
+msgid "French"
+msgstr "法語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Portuguese"
+msgstr "葡萄牙語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkish"
+msgstr "土耳其語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Arabic"
+msgstr "阿拉伯語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swedish"
+msgstr "瑞典語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Indonesian"
+msgstr "印尼語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hindi"
+msgstr "印地語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Finnish"
+msgstr "芬蘭語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Vietnamese"
+msgstr "越南語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hebrew"
+msgstr "希伯來語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Greek"
+msgstr "希臘語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malay"
+msgstr "馬來語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Czech"
+msgstr "捷克語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Romanian"
+msgstr "羅馬尼亞語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hungarian"
+msgstr "匈牙利語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tamil"
+msgstr "泰米爾語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Norwegian"
+msgstr "挪威語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Thai"
+msgstr "泰語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Urdu"
+msgstr "烏爾都語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Croatian"
+msgstr "克羅埃西亞語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bulgarian"
+msgstr "保加利亞語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lithuanian"
+msgstr "立陶宛語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Latin"
+msgstr "拉丁語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maori"
+msgstr "毛利語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malayalam"
+msgstr "馬拉雅拉姆語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Welsh"
+msgstr "威爾斯語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovak"
+msgstr "斯洛伐克語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Telugu"
+msgstr "泰盧固語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Persian"
+msgstr "波斯語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bengali"
+msgstr "孟加拉語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Serbian"
+msgstr "塞爾維亞語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Azerbaijani"
+msgstr "亞塞拜然語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Slovenian"
+msgstr "斯洛維尼亞語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kannada"
+msgstr "卡納達語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Estonian"
+msgstr "愛沙尼亞語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Macedonian"
+msgstr "馬其頓語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Breton"
+msgstr "布列塔尼語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Basque"
+msgstr "巴斯克語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Icelandic"
+msgstr "冰島語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Armenian"
+msgstr "亞美尼亞語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nepali"
+msgstr "尼泊爾語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Mongolian"
+msgstr "蒙古語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bosnian"
+msgstr "波士尼亞語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Kazakh"
+msgstr "哈薩克語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Albanian"
+msgstr "阿爾巴尼亞語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Swahili"
+msgstr "斯瓦希里語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Galician"
+msgstr "加利西亞語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Marathi"
+msgstr "馬拉地語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Punjabi"
+msgstr "旁遮普語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sinhala"
+msgstr "僧伽羅語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Khmer"
+msgstr "高棉語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Shona"
+msgstr "紹納語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yoruba"
+msgstr "約魯巴語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Somali"
+msgstr "索馬利語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Afrikaans"
+msgstr "南非荷蘭語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Occitan"
+msgstr "奧克語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Georgian"
+msgstr "喬治亞語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Belarusian"
+msgstr "白俄羅斯語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tajik"
+msgstr "塔吉克語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sindhi"
+msgstr "信德語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Gujarati"
+msgstr "古吉拉特語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Amharic"
+msgstr "阿姆哈拉語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Yiddish"
+msgstr "意第緒語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lao"
+msgstr "寮語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Uzbek"
+msgstr "烏茲別克語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Faroese"
+msgstr "法羅語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Haitian Creole"
+msgstr "海地克里奧爾語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Pashto"
+msgstr "普什圖語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Turkmen"
+msgstr "土庫曼語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Nynorsk"
+msgstr "新挪威語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Maltese"
+msgstr "馬爾他語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sanskrit"
+msgstr "梵語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Luxembourgish"
+msgstr "盧森堡語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Myanmar"
+msgstr "緬甸語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tibetan"
+msgstr "藏語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tagalog"
+msgstr "他加祿語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Malagasy"
+msgstr "馬拉加斯語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Assamese"
+msgstr "阿薩姆語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Tatar"
+msgstr "韃靼語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hawaiian"
+msgstr "夏威夷語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Lingala"
+msgstr "林加拉語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Hausa"
+msgstr "豪薩語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Bashkir"
+msgstr "巴什基爾語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Javanese"
+msgstr "爪哇語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Sundanese"
+msgstr "巽他語"
+
+#: buzz/transcriber/transcriber.py
+msgid "Cantonese"
+msgstr "粵語"
+
+#: buzz/transcriber/recording_transcriber.py buzz/model_loader.py
msgid "A connection error occurred"
-msgstr ""
+msgstr "發生連線錯誤"
-#: buzz/settings/shortcut.py:17
-#, fuzzy
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting Whisper.cpp..."
+msgstr "正在啟動 Whisper.cpp..."
+
+#: buzz/transcriber/recording_transcriber.py
+msgid "Starting transcription..."
+msgstr "正在開始轉錄..."
+
+#: buzz/settings/shortcut.py
msgid "Open Record Window"
-msgstr "現場錄製"
+msgstr "開啟錄製視窗"
-#: buzz/settings/shortcut.py:18
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "Import File"
-msgstr "導入媒體檔案..."
+msgstr "匯入檔案"
-#: buzz/settings/shortcut.py:20
+#: buzz/settings/shortcut.py
msgid "Open Preferences Window"
-msgstr ""
+msgstr "開啟偏好設定視窗"
-#: buzz/settings/shortcut.py:22
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Text"
-msgstr "新錄製"
+msgstr "檢視轉錄文字"
-#: buzz/settings/shortcut.py:23
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Translation"
-msgstr "新錄製"
+msgstr "檢視轉錄翻譯"
-#: buzz/settings/shortcut.py:24
-#, fuzzy
+#: buzz/settings/shortcut.py
msgid "View Transcript Timestamps"
-msgstr "新錄製"
+msgstr "檢視轉錄時間戳記"
-#: buzz/settings/recording_transcriber_mode.py:5
+#: buzz/settings/shortcut.py
+msgid "Search Transcript"
+msgstr "搜尋轉錄稿"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Next Transcript Search Result"
+msgstr "移至下一個轉錄搜尋結果"
+
+#: buzz/settings/shortcut.py
+msgid "Go to Previous Transcript Search Result"
+msgstr "移至上一個轉錄搜尋結果"
+
+#: buzz/settings/shortcut.py
+msgid "Scroll to Current Text"
+msgstr "捲動至目前文字"
+
+#: buzz/settings/shortcut.py
+msgid "Play/Pause Audio"
+msgstr "播放/暫停音訊"
+
+#: buzz/settings/shortcut.py
+msgid "Replay Current Segment"
+msgstr "重播目前片段"
+
+#: buzz/settings/shortcut.py
+msgid "Toggle Playback Controls"
+msgstr "切換播放控制項"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment Start Time"
+msgstr "縮短片段開始時間"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment Start Time"
+msgstr "延長片段開始時間"
+
+#: buzz/settings/shortcut.py
+msgid "Decrease Segment End Time"
+msgstr "縮短片段結束時間"
+
+#: buzz/settings/shortcut.py
+msgid "Increase Segment End Time"
+msgstr "延長片段結束時間"
+
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append below"
-msgstr ""
+msgstr "附加至下方"
-#: buzz/settings/recording_transcriber_mode.py:6
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append above"
-msgstr ""
+msgstr "附加至上方"
-#: buzz/settings/recording_transcriber_mode.py:7
+#: buzz/settings/recording_transcriber_mode.py
msgid "Append and correct"
-msgstr ""
+msgstr "附加並校正"
+
+#: buzz/file_transcriber_queue_worker.py
+msgid ""
+"Speech extraction failed! Check your internet connection — a model may need "
+"to be downloaded."
+msgstr "語音提取失敗!請檢查您的網路連線——可能需要下載模型。"
+
+#~ msgid "Comma-separated, e.g. \"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+#~ msgstr "逗號分隔,例如\"0.0, 0.2, 0.4, 0.6, 0.8, 1.0\""
+
+#~ msgid "Temperature:"
+#~ msgstr "溫度:"
+
+#~ msgid "Please translate each text sent to you from English to Spanish."
+#~ msgstr "請將傳送給您的每段文字從英語翻譯為西班牙語。"
+
+#~ msgid "Translation error, see logs!"
+#~ msgstr "翻譯錯誤,請查看日誌!"
#~ msgid "ID"
#~ msgstr "ID"
diff --git a/buzz/model_loader.py b/buzz/model_loader.py
index 7a093181..224bd6d3 100644
--- a/buzz/model_loader.py
+++ b/buzz/model_loader.py
@@ -7,9 +7,23 @@ import threading
import shutil
import subprocess
import sys
-import tempfile
+import ssl
import warnings
import platform
+
+# Fix SSL certificate verification for bundled applications (macOS, Windows).
+# This must be done before importing libraries that make HTTPS requests.
+try:
+ import certifi
+ _certifi_ca_bundle = certifi.where()
+ os.environ.setdefault("REQUESTS_CA_BUNDLE", _certifi_ca_bundle)
+ os.environ.setdefault("SSL_CERT_FILE", _certifi_ca_bundle)
+ os.environ.setdefault("SSL_CERT_DIR", os.path.dirname(_certifi_ca_bundle))
+ # Also update the default SSL context for urllib
+ ssl._create_default_https_context = lambda: ssl.create_default_context(cafile=_certifi_ca_bundle)
+except ImportError:
+ _certifi_ca_bundle = None
+
import requests
import whisper
import huggingface_hub
@@ -23,16 +37,68 @@ from huggingface_hub.errors import LocalEntryNotFoundError
from buzz.locale import _
-# Catch exception from whisper.dll not getting loaded.
-# TODO: Remove flag and try-except when issue with loading
-# the DLL in some envs is fixed.
-LOADED_WHISPER_CPP_BINARY = False
-try:
- import buzz.whisper_cpp as whisper_cpp # noqa: F401
+# Configure huggingface_hub to use certifi certificates directly.
+# This is more reliable than environment variables for frozen apps.
+if _certifi_ca_bundle is not None:
+ try:
+ from huggingface_hub import configure_http_backend
+
+ def _hf_session_factory() -> requests.Session:
+ session = requests.Session()
+ session.verify = _certifi_ca_bundle
+ return session
+
+ configure_http_backend(backend_factory=_hf_session_factory)
+ except ImportError:
+ # configure_http_backend not available in older huggingface_hub versions
+ pass
+ except Exception as e:
+ logging.debug(f"Failed to configure huggingface_hub HTTP backend: {e}")
+
+# On Windows, creating symlinks requires special privileges (Developer Mode or
+# SeCreateSymbolicLinkPrivilege). Monkey-patch huggingface_hub to use file
+# copying instead of symlinks to avoid [WinError 1314] errors.
+if sys.platform == "win32":
+ try:
+ from huggingface_hub import file_download
+ from pathlib import Path
+
+ _original_create_symlink = file_download._create_symlink
+
+ def _windows_create_symlink(src: Path, dst: Path, new_blob: bool = False) -> None:
+ """Windows-compatible replacement that copies instead of symlinking."""
+ src = Path(src)
+ dst = Path(dst)
+
+ # If dst already exists and is correct, skip
+ if dst.exists():
+ if dst.is_symlink():
+ # Existing symlink - leave it
+ return
+ if dst.is_file():
+ # Check if it's the same file
+ if dst.stat().st_size == src.stat().st_size:
+ return
+
+ dst.parent.mkdir(parents=True, exist_ok=True)
+
+ # Try symlink first (works if Developer Mode is enabled)
+ try:
+ dst.unlink(missing_ok=True)
+ os.symlink(src, dst)
+ return
+ except OSError:
+ pass
+
+ # Fallback: copy the file instead
+ dst.unlink(missing_ok=True)
+ shutil.copy2(src, dst)
+
+ file_download._create_symlink = _windows_create_symlink
+ logging.debug("Patched huggingface_hub to use file copying on Windows")
+ except Exception as e:
+ logging.warning(f"Failed to patch huggingface_hub for Windows: {e}")
- LOADED_WHISPER_CPP_BINARY = True
-except ImportError:
- logging.exception("")
model_root_dir = user_cache_dir("Buzz")
model_root_dir = os.path.join(model_root_dir, "models")
@@ -41,17 +107,21 @@ os.makedirs(model_root_dir, exist_ok=True)
logging.debug("Model root directory: %s", model_root_dir)
-
class WhisperModelSize(str, enum.Enum):
TINY = "tiny"
+ TINYEN = "tiny.en"
BASE = "base"
+ BASEEN = "base.en"
SMALL = "small"
+ SMALLEN = "small.en"
MEDIUM = "medium"
+ MEDIUMEN = "medium.en"
LARGE = "large"
LARGEV2 = "large-v2"
LARGEV3 = "large-v3"
LARGEV3TURBO = "large-v3-turbo"
CUSTOM = "custom"
+ LUMII = "lumii"
def to_faster_whisper_model_size(self) -> str:
if self == WhisperModelSize.LARGE:
@@ -66,6 +136,25 @@ class WhisperModelSize(str, enum.Enum):
def __str__(self):
return self.value.capitalize()
+# Approximate expected file sizes for Whisper models (based on actual .pt file sizes)
+WHISPER_MODEL_SIZES = {
+ WhisperModelSize.TINY: 72 * 1024 * 1024, # ~73 MB actual
+ WhisperModelSize.TINYEN: 72 * 1024 * 1024, # ~73 MB actual
+ WhisperModelSize.BASE: 138 * 1024 * 1024, # ~139 MB actual
+ WhisperModelSize.BASEEN: 138 * 1024 * 1024, # ~139 MB actual
+ WhisperModelSize.SMALL: 460 * 1024 * 1024, # ~462 MB actual
+ WhisperModelSize.SMALLEN: 460 * 1024 * 1024, # ~462 MB actual
+ WhisperModelSize.MEDIUM: 1500 * 1024 * 1024, # ~1.5 GB actual
+ WhisperModelSize.MEDIUMEN: 1500 * 1024 * 1024, # ~1.5 GB actual
+ WhisperModelSize.LARGE: 2870 * 1024 * 1024, # ~2.9 GB actual
+ WhisperModelSize.LARGEV2: 2870 * 1024 * 1024, # ~2.9 GB actual
+ WhisperModelSize.LARGEV3: 2870 * 1024 * 1024, # ~2.9 GB actual
+ WhisperModelSize.LARGEV3TURBO: 1550 * 1024 * 1024, # ~1.6 GB actual (turbo is smaller)
+}
+
+def get_expected_whisper_model_size(size: WhisperModelSize) -> Optional[int]:
+ """Get expected file size for a Whisper model without network request."""
+ return WHISPER_MODEL_SIZES.get(size, None)
class ModelType(enum.Enum):
WHISPER = "Whisper"
@@ -85,13 +174,6 @@ class ModelType(enum.Enum):
def is_available(self):
if (
- # Hide Whisper.cpp option if whisper.dll did not load correctly.
- # See: https://github.com/chidiwilliams/buzz/issues/274,
- # https://github.com/chidiwilliams/buzz/issues/197
- (self == ModelType.WHISPER_CPP and not LOADED_WHISPER_CPP_BINARY)
- ):
- return False
- elif (
# Hide Faster Whisper option on macOS x86_64
# See: https://github.com/SYSTRAN/faster-whisper/issues/541
(self == ModelType.FASTER_WHISPER
@@ -126,6 +208,80 @@ HUGGING_FACE_MODEL_ALLOW_PATTERNS = [
"vocab.json",
]
+# MMS models use different patterns - adapters are downloaded on-demand by transformers
+MMS_MODEL_ALLOW_PATTERNS = [
+ "model.safetensors",
+ "pytorch_model.bin",
+ "config.json",
+ "preprocessor_config.json",
+ "tokenizer_config.json",
+ "vocab.json",
+ "special_tokens_map.json",
+ "added_tokens.json",
+]
+
+# ISO 639-1 to ISO 639-3 language code mapping for MMS models
+ISO_639_1_TO_3 = {
+ "en": "eng", "fr": "fra", "de": "deu", "es": "spa", "it": "ita",
+ "pt": "por", "ru": "rus", "ja": "jpn", "ko": "kor", "zh": "cmn",
+ "ar": "ara", "hi": "hin", "nl": "nld", "pl": "pol", "sv": "swe",
+ "tr": "tur", "uk": "ukr", "vi": "vie", "cs": "ces", "da": "dan",
+ "fi": "fin", "el": "ell", "he": "heb", "hu": "hun", "id": "ind",
+ "ms": "zsm", "no": "nob", "ro": "ron", "sk": "slk", "th": "tha",
+ "bg": "bul", "ca": "cat", "hr": "hrv", "lt": "lit", "lv": "lav",
+ "sl": "slv", "et": "est", "sr": "srp", "tl": "tgl", "bn": "ben",
+ "ta": "tam", "te": "tel", "mr": "mar", "gu": "guj", "kn": "kan",
+ "ml": "mal", "pa": "pan", "ur": "urd", "fa": "pes", "sw": "swh",
+ "af": "afr", "az": "azj", "be": "bel", "bs": "bos", "cy": "cym",
+ "eo": "epo", "eu": "eus", "ga": "gle", "gl": "glg", "hy": "hye",
+ "is": "isl", "ka": "kat", "kk": "kaz", "km": "khm", "lo": "lao",
+ "mk": "mkd", "mn": "khk", "my": "mya", "ne": "npi", "si": "sin",
+ "sq": "sqi", "uz": "uzn", "zu": "zul", "am": "amh", "jw": "jav",
+ "la": "lat", "so": "som", "su": "sun", "tt": "tat", "yo": "yor",
+}
+
+
+def map_language_to_mms(language_code: str) -> str:
+ """Convert ISO 639-1 code to ISO 639-3 code for MMS models.
+
+ If the code is already 3 letters, returns it as-is.
+ If the code is not found in the mapping, returns as-is.
+ """
+ if not language_code:
+ return "eng" # Default to English for MMS
+ if len(language_code) == 3:
+ return language_code # Already ISO 639-3
+ return ISO_639_1_TO_3.get(language_code, language_code)
+
+
+def is_mms_model(model_id: str) -> bool:
+ """Detect if a HuggingFace model is an MMS (Massively Multilingual Speech) model.
+
+ Detection criteria:
+ 1. Model ID contains "mms-" (e.g., facebook/mms-1b-all)
+ 2. Model config has model_type == "wav2vec2" with adapter architecture
+ """
+ if not model_id:
+ return False
+
+ # Fast check: model ID pattern
+ if "mms-" in model_id.lower():
+ return True
+
+ # For cached/downloaded models, check config.json
+ try:
+ import json
+ config_path = huggingface_hub.hf_hub_download(
+ model_id, "config.json", local_files_only=True, cache_dir=model_root_dir
+ )
+ with open(config_path) as f:
+ config = json.load(f)
+ # MMS models have model_type "wav2vec2" and use adapter architecture
+ return (config.get("model_type") == "wav2vec2"
+ and config.get("adapter_attn_dim") is not None)
+ except Exception:
+ return False
+
@dataclass()
class TranscriptionModel:
@@ -190,8 +346,10 @@ class TranscriptionModel:
def delete_local_file(self):
model_path = self.get_local_model_path()
- if (self.model_type == ModelType.HUGGING_FACE
- or self.model_type == ModelType.FASTER_WHISPER):
+ if self.model_type in (ModelType.HUGGING_FACE,
+ ModelType.FASTER_WHISPER):
+ # Go up two directories to get the huggingface cache root for this model
+ # Structure: models--repo--name/snapshots/xxx/files
model_path = os.path.dirname(os.path.dirname(model_path))
logging.debug("Deleting model directory: %s", model_path)
@@ -199,6 +357,32 @@ class TranscriptionModel:
shutil.rmtree(model_path, ignore_errors=True)
return
+ if self.model_type == ModelType.WHISPER_CPP:
+ if self.whisper_model_size == WhisperModelSize.CUSTOM:
+ # Custom models are stored as a single .bin file directly in model_root_dir
+ logging.debug("Deleting model file: %s", model_path)
+ os.remove(model_path)
+ else:
+ # Non-custom models are downloaded via huggingface_hub.
+ # Multiple models share the same repo directory, so we only delete
+ # the specific model files, not the entire directory.
+ logging.debug("Deleting model file: %s", model_path)
+ os.remove(model_path)
+
+ # Also delete CoreML files if they exist (.mlmodelc.zip and extracted directory)
+ model_dir = os.path.dirname(model_path)
+ model_name = self.whisper_model_size.to_whisper_cpp_model_size()
+ coreml_zip = os.path.join(model_dir, f"ggml-{model_name}-encoder.mlmodelc.zip")
+ coreml_dir = os.path.join(model_dir, f"ggml-{model_name}-encoder.mlmodelc")
+
+ if os.path.exists(coreml_zip):
+ logging.debug("Deleting CoreML zip: %s", coreml_zip)
+ os.remove(coreml_zip)
+ if os.path.exists(coreml_dir):
+ logging.debug("Deleting CoreML directory: %s", coreml_dir)
+ shutil.rmtree(coreml_dir, ignore_errors=True)
+ return
+
logging.debug("Deleting model file: %s", model_path)
os.remove(model_path)
@@ -213,7 +397,21 @@ class TranscriptionModel:
file_path = get_whisper_file_path(size=self.whisper_model_size)
if not os.path.exists(file_path) or not os.path.isfile(file_path):
return None
- return file_path
+
+ file_size = os.path.getsize(file_path)
+
+ expected_size = get_expected_whisper_model_size(self.whisper_model_size)
+
+ if expected_size is not None:
+ if file_size < expected_size * 0.95: # Allow 5% tolerance for file system differences
+ return None
+ return file_path
+ else:
+ # For unknown model size
+ if file_size < 50 * 1024 * 1024:
+ return None
+
+ return file_path
if self.model_type == ModelType.FASTER_WHISPER:
try:
@@ -242,17 +440,23 @@ class TranscriptionModel:
WHISPER_CPP_REPO_ID = "ggerganov/whisper.cpp"
+WHISPER_CPP_LUMII_REPO_ID = "RaivisDejus/whisper.cpp-lv"
def get_whisper_cpp_file_path(size: WhisperModelSize) -> str:
if size == WhisperModelSize.CUSTOM:
return os.path.join(model_root_dir, f"ggml-model-whisper-custom.bin")
+ repo_id = WHISPER_CPP_REPO_ID
+
+ if size == WhisperModelSize.LUMII:
+ repo_id = WHISPER_CPP_LUMII_REPO_ID
+
model_filename = f"ggml-{size.to_whisper_cpp_model_size()}.bin"
try:
- model_path = huggingface_hub.snapshot_download(
- repo_id=WHISPER_CPP_REPO_ID,
+ model_path = huggingface_hub.snapshot_download(
+ repo_id=repo_id,
allow_patterns=[model_filename],
local_files_only=True,
cache_dir=model_root_dir,
@@ -278,7 +482,8 @@ class HuggingfaceDownloadMonitor:
def __init__(self, model_root: str, progress: pyqtSignal(tuple), total_file_size: int):
self.model_root = model_root
self.progress = progress
- self.total_file_size = total_file_size
+ # To keep dialog open even if it reports 100%
+ self.total_file_size = round(total_file_size * 1.1)
self.incomplete_download_root = None
self.stop_event = threading.Event()
self.monitor_thread = None
@@ -286,8 +491,10 @@ class HuggingfaceDownloadMonitor:
def set_download_roots(self):
normalized_model_root = os.path.normpath(self.model_root)
- two_dirs_up = os.path.normpath(os.path.join(normalized_model_root, "..", ".."))
- self.incomplete_download_root = os.path.normpath(os.path.join(two_dirs_up, "blobs"))
+ two_dirs_up = os.path.normpath(
+ os.path.join(normalized_model_root, "..", ".."))
+ self.incomplete_download_root = os.path.normpath(
+ os.path.join(two_dirs_up, "blobs"))
def clean_tmp_files(self):
for filename in os.listdir(model_root_dir):
@@ -296,16 +503,28 @@ class HuggingfaceDownloadMonitor:
def monitor_file_size(self):
while not self.stop_event.is_set():
- if model_root_dir is not None:
- for filename in os.listdir(model_root_dir):
- if filename.startswith("tmp"):
- file_size = os.path.getsize(os.path.join(model_root_dir, filename))
- self.progress.emit((file_size, self.total_file_size))
+ try:
+ if model_root_dir is not None and os.path.isdir(model_root_dir):
+ for filename in os.listdir(model_root_dir):
+ if filename.startswith("tmp"):
+ try:
+ file_size = os.path.getsize(
+ os.path.join(model_root_dir, filename))
+ self.progress.emit((file_size, self.total_file_size))
+ except OSError:
+ pass # File may have been deleted
- for filename in os.listdir(self.incomplete_download_root):
- if filename.endswith(".incomplete"):
- file_size = os.path.getsize(os.path.join(self.incomplete_download_root, filename))
- self.progress.emit((file_size, self.total_file_size))
+ if self.incomplete_download_root and os.path.isdir(self.incomplete_download_root):
+ for filename in os.listdir(self.incomplete_download_root):
+ if filename.endswith(".incomplete"):
+ try:
+ file_size = os.path.getsize(os.path.join(
+ self.incomplete_download_root, filename))
+ self.progress.emit((file_size, self.total_file_size))
+ except OSError:
+ pass # File may have been deleted
+ except OSError:
+ pass # Directory listing failed, ignore
time.sleep(2)
@@ -339,7 +558,8 @@ def download_from_huggingface(
try:
model_root = huggingface_hub.snapshot_download(
repo_id,
- allow_patterns=allow_patterns[num_large_files:], # all, but largest
+ # all, but largest
+ allow_patterns=allow_patterns[num_large_files:],
cache_dir=model_root_dir,
etag_timeout=60
)
@@ -361,7 +581,8 @@ def download_from_huggingface(
except requests.exceptions.RequestException as e:
continue
- model_download_monitor = HuggingfaceDownloadMonitor(model_root, progress, largest_file_size)
+ model_download_monitor = HuggingfaceDownloadMonitor(
+ model_root, progress, largest_file_size)
model_download_monitor.start_monitoring()
try:
@@ -374,9 +595,7 @@ def download_from_huggingface(
except Exception as exc:
logging.exception(exc)
model_download_monitor.stop_monitoring()
- # Cleanup to prevent incomplete downloads errors
- if os.path.exists(model_root):
- shutil.rmtree(model_root)
+
return ""
model_download_monitor.stop_monitoring()
@@ -395,23 +614,19 @@ def download_faster_whisper_model(
if size == WhisperModelSize.CUSTOM:
repo_id = custom_repo_id
- elif size == WhisperModelSize.LARGEV3:
- repo_id = "Systran/faster-whisper-large-v3"
- # Maybe switch to 'mobiuslabsgmbh/faster-whisper-large-v3-turbo', seems to be used in
- # faster-whisper code https://github.com/SYSTRAN/faster-whisper/blob/master/faster_whisper/utils.py#L29
- # If so changes needed also in whisper_file_transcriber.py
+ # Replicating models from faster-whisper code https://github.com/SYSTRAN/faster-whisper/blob/master/faster_whisper/utils.py#L29
elif size == WhisperModelSize.LARGEV3TURBO:
- repo_id = "deepdml/faster-whisper-large-v3-turbo-ct2"
+ repo_id = "mobiuslabsgmbh/faster-whisper-large-v3-turbo"
else:
- repo_id = "guillaumekln/faster-whisper-%s" % size
+ repo_id = "Systran/faster-whisper-%s" % size
allow_patterns = [
"model.bin", # largest by size first
"pytorch_model.bin", # possible alternative model filename
"config.json",
+ "preprocessor_config.json",
"tokenizer.json",
- "vocabulary.txt",
- "vocabulary.json",
+ "vocabulary.*",
]
if local_files_only:
@@ -440,21 +655,29 @@ class ModelDownloader(QRunnable):
def __init__(self, model: TranscriptionModel, custom_model_url: Optional[str] = None):
super().__init__()
- self.is_coreml_supported = platform.system() == "Darwin" and platform.machine() == "arm64"
+ self.is_coreml_supported = platform.system(
+ ) == "Darwin" and platform.machine() == "arm64"
self.signals = self.Signals()
self.model = model
self.stopped = False
self.custom_model_url = custom_model_url
def run(self) -> None:
- logging.debug("Downloading model: %s, %s", self.model, self.model.hugging_face_model_id)
+ logging.debug("Downloading model: %s, %s", self.model,
+ self.model.hugging_face_model_id)
if self.model.model_type == ModelType.WHISPER_CPP:
if self.custom_model_url:
url = self.custom_model_url
- file_path = get_whisper_cpp_file_path(size=self.model.whisper_model_size)
+ file_path = get_whisper_cpp_file_path(
+ size=self.model.whisper_model_size)
return self.download_model_to_path(url=url, file_path=file_path)
+ repo_id = WHISPER_CPP_REPO_ID
+
+ if self.model.whisper_model_size == WhisperModelSize.LUMII:
+ repo_id = WHISPER_CPP_LUMII_REPO_ID
+
model_name = self.model.whisper_model_size.to_whisper_cpp_model_size()
whisper_cpp_model_files = [
@@ -464,30 +687,64 @@ class ModelDownloader(QRunnable):
num_large_files = 1
if self.is_coreml_supported:
whisper_cpp_model_files = [
- f"ggml-{model_name}.bin",
- f"ggml-{model_name}-encoder.mlmodelc.zip",
- "README.md"
+ f"ggml-{model_name}.bin",
+ f"ggml-{model_name}-encoder.mlmodelc.zip",
+ "README.md"
]
num_large_files = 2
model_path = download_from_huggingface(
- repo_id=WHISPER_CPP_REPO_ID,
+ repo_id=repo_id,
allow_patterns=whisper_cpp_model_files,
progress=self.signals.progress,
num_large_files=num_large_files
)
if self.is_coreml_supported:
- with zipfile.ZipFile(
- os.path.join(model_path, f"ggml-{model_name}-encoder.mlmodelc.zip"), 'r') as zip_ref:
- zip_ref.extractall(model_path)
+ import tempfile
- self.signals.finished.emit(os.path.join(model_path, f"ggml-{model_name}.bin"))
+ target_dir = os.path.join(model_path, f"ggml-{model_name}-encoder.mlmodelc")
+ zip_path = os.path.join(model_path, f"ggml-{model_name}-encoder.mlmodelc.zip")
+
+ # Remove target directory if it exists
+ if os.path.exists(target_dir):
+ shutil.rmtree(target_dir)
+
+ # Extract to a temporary directory first
+ with tempfile.TemporaryDirectory() as temp_dir:
+ with zipfile.ZipFile(zip_path, 'r') as zip_ref:
+ zip_ref.extractall(temp_dir)
+
+ # Remove __MACOSX metadata folders if present
+ macosx_path = os.path.join(temp_dir, "__MACOSX")
+ if os.path.exists(macosx_path):
+ shutil.rmtree(macosx_path)
+
+ # Check if there's a single top-level directory
+ temp_contents = os.listdir(temp_dir)
+ if len(temp_contents) == 1 and os.path.isdir(os.path.join(temp_dir, temp_contents[0])):
+ # Single directory - move its contents to target
+ nested_dir = os.path.join(temp_dir, temp_contents[0])
+ shutil.move(nested_dir, target_dir)
+ else:
+ # Multiple items or files - copy everything to target
+ os.makedirs(target_dir, exist_ok=True)
+ for item in temp_contents:
+ src = os.path.join(temp_dir, item)
+ dst = os.path.join(target_dir, item)
+ if os.path.isdir(src):
+ shutil.copytree(src, dst)
+ else:
+ shutil.copy2(src, dst)
+
+ self.signals.finished.emit(os.path.join(
+ model_path, f"ggml-{model_name}.bin"))
return
if self.model.model_type == ModelType.WHISPER:
url = whisper._MODELS[self.model.whisper_model_size.value]
- file_path = get_whisper_file_path(size=self.model.whisper_model_size)
+ file_path = get_whisper_file_path(
+ size=self.model.whisper_model_size)
expected_sha256 = url.split("/")[-2]
return self.download_model_to_path(
url=url, file_path=file_path, expected_sha256=expected_sha256
@@ -512,6 +769,10 @@ class ModelDownloader(QRunnable):
progress=self.signals.progress,
num_large_files=4
)
+
+ if model_path == "":
+ self.signals.error.emit(_("Error"))
+
self.signals.finished.emit(model_path)
return
@@ -528,16 +789,18 @@ class ModelDownloader(QRunnable):
downloaded = self.download_model(url, file_path, expected_sha256)
if downloaded:
self.signals.finished.emit(file_path)
- except requests.RequestException:
+ except requests.RequestException as e:
self.signals.error.emit(_("A connection error occurred"))
- if os.path.exists(file_path):
- os.remove(file_path)
+ if not self.stopped and "timeout" not in str(e).lower():
+ if os.path.exists(file_path):
+ os.remove(file_path)
logging.exception("")
except Exception as exc:
self.signals.error.emit(str(exc))
- if os.path.exists(file_path):
- os.remove(file_path)
- logging.exception(exc)
+ if not self.stopped:
+ if os.path.exists(file_path):
+ os.remove(file_path)
+ logging.exception(exc)
def download_model(
self, url: str, file_path: str, expected_sha256: Optional[str]
@@ -549,41 +812,190 @@ class ModelDownloader(QRunnable):
if os.path.exists(file_path) and not os.path.isfile(file_path):
raise RuntimeError(f"{file_path} exists and is not a regular file")
+ resume_from = 0
+ file_mode = "wb"
+
if os.path.isfile(file_path):
- if expected_sha256 is None:
- return True
+ file_size = os.path.getsize(file_path)
- model_bytes = open(file_path, "rb").read()
- model_sha256 = hashlib.sha256(model_bytes).hexdigest()
- if model_sha256 == expected_sha256:
- return True
+ if expected_sha256 is not None:
+ # Get the expected file size from URL
+ try:
+ head_response = requests.head(url, timeout=5, allow_redirects=True)
+ expected_size = int(head_response.headers.get("Content-Length", 0))
+
+ if expected_size > 0:
+ if file_size < expected_size:
+ resume_from = file_size
+ file_mode = "ab"
+ logging.debug(
+ f"File incomplete ({file_size}/{expected_size} bytes), resuming from byte {resume_from}"
+ )
+ elif file_size == expected_size:
+ # This means file size matches - verify SHA256 to confirm it is complete
+ try:
+ # Use chunked reading to avoid loading entire file into memory
+ sha256_hash = hashlib.sha256()
+ with open(file_path, "rb") as f:
+ for chunk in iter(lambda: f.read(8192), b""):
+ sha256_hash.update(chunk)
+ model_sha256 = sha256_hash.hexdigest()
+ if model_sha256 == expected_sha256:
+ logging.debug("Model already downloaded and verified")
+ return True
+ else:
+ warnings.warn(
+ f"{file_path} exists, but the SHA256 checksum does not match; re-downloading the file"
+ )
+ # File exists but it is wrong, delete it
+ os.remove(file_path)
+ except Exception as e:
+ logging.warning(f"Error checking existing file: {e}")
+ os.remove(file_path)
+ else:
+ # File is larger than expected - corrupted, delete it
+ warnings.warn(f"File size ({file_size}) exceeds expected size ({expected_size}), re-downloading")
+ os.remove(file_path)
+ else:
+ # Can't get expected size - use threshold approach
+ if file_size < 10 * 1024 * 1024:
+ resume_from = file_size
+ file_mode = "ab" # Append mode to resume
+ logging.debug(f"Resuming download from byte {resume_from}")
+ else:
+ # Large file - verify SHA256 using chunked reading
+ try:
+ sha256_hash = hashlib.sha256()
+ with open(file_path, "rb") as f:
+ for chunk in iter(lambda: f.read(8192), b""):
+ sha256_hash.update(chunk)
+ model_sha256 = sha256_hash.hexdigest()
+ if model_sha256 == expected_sha256:
+ logging.debug("Model already downloaded and verified")
+ return True
+ else:
+ warnings.warn("SHA256 mismatch, re-downloading")
+ os.remove(file_path)
+ except Exception as e:
+ logging.warning(f"Error verifying file: {e}")
+ os.remove(file_path)
+
+ except Exception as e:
+ # Can't get expected size - use threshold
+ logging.debug(f"Could not get expected file size: {e}, using threshold")
+ if file_size < 10 * 1024 * 1024:
+ resume_from = file_size
+ file_mode = "ab"
+ logging.debug(f"Resuming from byte {resume_from}")
else:
- warnings.warn(
- f"{file_path} exists, but the SHA256 checksum does not match; re-downloading the file"
- )
-
- tmp_file = tempfile.mktemp()
- logging.debug("Downloading to temporary file = %s", tmp_file)
+ # No SHA256 to verify - just check file size
+ if file_size > 0:
+ resume_from = file_size
+ file_mode = "ab"
+ logging.debug(f"Resuming download from byte {resume_from}")
# Downloads the model using the requests module instead of urllib to
# use the certs from certifi when the app is running in frozen mode
- with requests.get(url, stream=True, timeout=15) as source, open(
- tmp_file, "wb"
- ) as output:
- source.raise_for_status()
- total_size = float(source.headers.get("Content-Length", 0))
- current = 0.0
- self.signals.progress.emit((current, total_size))
- for chunk in source.iter_content(chunk_size=8192):
- if self.stopped:
- return False
- output.write(chunk)
- current += len(chunk)
+
+ # Check if server supports Range requests before starting download
+ supports_range = False
+ if resume_from > 0:
+ try:
+ head_resp = requests.head(url, timeout=10, allow_redirects=True)
+ accept_ranges = head_resp.headers.get("Accept-Ranges", "").lower()
+ supports_range = accept_ranges == "bytes"
+ if not supports_range:
+ logging.debug("Server doesn't support Range requests, starting from beginning")
+ resume_from = 0
+ file_mode = "wb"
+ except requests.RequestException as e:
+ logging.debug(f"HEAD request failed, starting fresh: {e}")
+ resume_from = 0
+ file_mode = "wb"
+
+ headers = {}
+ if resume_from > 0 and supports_range:
+ headers["Range"] = f"bytes={resume_from}-"
+
+ # Use a temporary file for fresh downloads to ensure atomic writes
+ temp_file_path = None
+ if resume_from == 0:
+ temp_file_path = file_path + ".downloading"
+ # Clean up any existing temp file
+ if os.path.exists(temp_file_path):
+ try:
+ os.remove(temp_file_path)
+ except OSError:
+ pass
+ download_path = temp_file_path
+ else:
+ download_path = file_path
+
+ try:
+ with requests.get(url, stream=True, timeout=30, headers=headers) as source:
+ source.raise_for_status()
+
+ if resume_from > 0:
+ if source.status_code == 206:
+ logging.debug(
+ f"Server supports resume, continuing from byte {resume_from}")
+ content_range = source.headers.get("Content-Range", "")
+ if "/" in content_range:
+ total_size = int(content_range.split("/")[-1])
+ else:
+ total_size = resume_from + int(source.headers.get("Content-Length", 0))
+ current = resume_from
+ else:
+ # Server returned 200 instead of 206, need to start over
+ logging.debug("Server returned 200 instead of 206, starting fresh")
+ resume_from = 0
+ file_mode = "wb"
+ temp_file_path = file_path + ".downloading"
+ download_path = temp_file_path
+ total_size = float(source.headers.get("Content-Length", 0))
+ current = 0.0
+ else:
+ total_size = float(source.headers.get("Content-Length", 0))
+ current = 0.0
+
self.signals.progress.emit((current, total_size))
+ with open(download_path, file_mode) as output:
+ for chunk in source.iter_content(chunk_size=8192):
+ if self.stopped:
+ return False
+ output.write(chunk)
+ current += len(chunk)
+ self.signals.progress.emit((current, total_size))
+
+ # If we used a temp file, rename it to the final path
+ if temp_file_path and os.path.exists(temp_file_path):
+ # Remove existing file if present
+ if os.path.exists(file_path):
+ os.remove(file_path)
+ shutil.move(temp_file_path, file_path)
+
+ except Exception:
+ # Clean up temp file on error
+ if temp_file_path and os.path.exists(temp_file_path):
+ try:
+ os.remove(temp_file_path)
+ except OSError:
+ pass
+ raise
+
if expected_sha256 is not None:
- model_bytes = open(tmp_file, "rb").read()
- if hashlib.sha256(model_bytes).hexdigest() != expected_sha256:
+ # Use chunked reading to avoid loading entire file into memory
+ sha256_hash = hashlib.sha256()
+ with open(file_path, "rb") as f:
+ for chunk in iter(lambda: f.read(8192), b""):
+ sha256_hash.update(chunk)
+ if sha256_hash.hexdigest() != expected_sha256:
+ # Delete the corrupted file before raising the error
+ try:
+ os.remove(file_path)
+ except OSError as e:
+ logging.warning(f"Failed to delete corrupted model file: {e}")
raise RuntimeError(
"Model has been downloaded but the SHA256 checksum does not match. Please retry loading the "
"model."
@@ -591,17 +1003,7 @@ class ModelDownloader(QRunnable):
logging.debug("Downloaded model")
- # https://github.com/chidiwilliams/buzz/issues/454
- shutil.move(tmp_file, file_path)
- logging.debug("Moved file from %s to %s", tmp_file, file_path)
return True
def cancel(self):
self.stopped = True
-
-
-def get_custom_api_whisper_model(base_url: str):
- if "api.groq.com" in base_url:
- return "whisper-large-v3"
-
- return "whisper-1"
diff --git a/buzz/recording.py b/buzz/recording.py
index 598fc561..158f6e5c 100644
--- a/buzz/recording.py
+++ b/buzz/recording.py
@@ -9,6 +9,9 @@ from PyQt6.QtCore import QObject, pyqtSignal
class RecordingAmplitudeListener(QObject):
stream: Optional[sounddevice.InputStream] = None
amplitude_changed = pyqtSignal(float)
+ average_amplitude_changed = pyqtSignal(float)
+
+ ACCUMULATION_SECONDS = 1
def __init__(
self,
@@ -17,6 +20,9 @@ class RecordingAmplitudeListener(QObject):
):
super().__init__(parent)
self.input_device_index = input_device_index
+ self.buffer = np.ndarray([], dtype=np.float32)
+ self.accumulation_size = 0
+ self._active = True
def start_recording(self):
try:
@@ -27,16 +33,24 @@ class RecordingAmplitudeListener(QObject):
callback=self.stream_callback,
)
self.stream.start()
- except sounddevice.PortAudioError:
+ self.accumulation_size = int(self.stream.samplerate * self.ACCUMULATION_SECONDS)
+ except Exception as e:
self.stop_recording()
- logging.exception("")
+ logging.exception("Failed to start audio stream on device %s: %s", self.input_device_index, e)
def stop_recording(self):
+ self._active = False
if self.stream is not None:
self.stream.stop()
self.stream.close()
def stream_callback(self, in_data: np.ndarray, frame_count, time_info, status):
+ if not self._active:
+ return
chunk = in_data.ravel()
- amplitude = np.sqrt(np.mean(chunk**2)) # root-mean-square
- self.amplitude_changed.emit(amplitude)
+ self.amplitude_changed.emit(float(np.sqrt(np.mean(chunk**2))))
+
+ self.buffer = np.append(self.buffer, chunk)
+ if self.buffer.size >= self.accumulation_size:
+ self.average_amplitude_changed.emit(float(np.sqrt(np.mean(self.buffer**2))))
+ self.buffer = np.ndarray([], dtype=np.float32)
diff --git a/buzz/schema.sql b/buzz/schema.sql
index d6046b54..a6a11bad 100644
--- a/buzz/schema.sql
+++ b/buzz/schema.sql
@@ -15,7 +15,11 @@ CREATE TABLE transcription (
time_started TIMESTAMP,
url TEXT,
whisper_model_size TEXT,
- hugging_face_model_id TEXT
+ hugging_face_model_id TEXT,
+ word_level_timings BOOLEAN DEFAULT FALSE,
+ extract_speech BOOLEAN DEFAULT FALSE,
+ name TEXT,
+ notes TEXT
);
CREATE TABLE transcription_segment (
diff --git a/buzz/settings/settings.py b/buzz/settings/settings.py
index 66bbb2ac..0f9242a4 100644
--- a/buzz/settings/settings.py
+++ b/buzz/settings/settings.py
@@ -1,6 +1,7 @@
import enum
import typing
import logging
+import uuid
from PyQt6.QtCore import QSettings
@@ -11,13 +12,11 @@ class Settings:
def __init__(self, application=""):
self.settings = QSettings(APP_NAME, application)
self.settings.sync()
- logging.debug(f"Settings filename: {self.settings.fileName()}")
class Key(enum.Enum):
RECORDING_TRANSCRIBER_TASK = "recording-transcriber/task"
RECORDING_TRANSCRIBER_MODEL = "recording-transcriber/model"
RECORDING_TRANSCRIBER_LANGUAGE = "recording-transcriber/language"
- RECORDING_TRANSCRIBER_TEMPERATURE = "recording-transcriber/temperature"
RECORDING_TRANSCRIBER_INITIAL_PROMPT = "recording-transcriber/initial-prompt"
RECORDING_TRANSCRIBER_ENABLE_LLM_TRANSLATION = "recording-transcriber/enable-llm-translation"
RECORDING_TRANSCRIBER_LLM_MODEL = "recording-transcriber/llm-model"
@@ -25,11 +24,22 @@ class Settings:
RECORDING_TRANSCRIBER_EXPORT_ENABLED = "recording-transcriber/export-enabled"
RECORDING_TRANSCRIBER_EXPORT_FOLDER = "recording-transcriber/export-folder"
RECORDING_TRANSCRIBER_MODE = "recording-transcriber/mode"
+ RECORDING_TRANSCRIBER_SILENCE_THRESHOLD = "recording-transcriber/silence-threshold"
+ RECORDING_TRANSCRIBER_LINE_SEPARATOR = "recording-transcriber/line-separator"
+ RECORDING_TRANSCRIBER_TRANSCRIPTION_STEP = "recording-transcriber/transcription-step"
+ RECORDING_TRANSCRIBER_EXPORT_FILE_TYPE = "recording-transcriber/export-file-type"
+ RECORDING_TRANSCRIBER_EXPORT_MAX_ENTRIES = "recording-transcriber/export-max-entries"
+ RECORDING_TRANSCRIBER_EXPORT_FILE_NAME = "recording-transcriber/export-file-name"
+ RECORDING_TRANSCRIBER_HIDE_UNCONFIRMED = "recording-transcriber/hide-unconfirmed"
+
+ PRESENTATION_WINDOW_TEXT_COLOR = "presentation-window/text-color"
+ PRESENTATION_WINDOW_BACKGROUND_COLOR = "presentation-window/background-color"
+ PRESENTATION_WINDOW_TEXT_SIZE = "presentation-window/text-size"
+ PRESENTATION_WINDOW_THEME = "presentation-window/theme"
FILE_TRANSCRIBER_TASK = "file-transcriber/task"
FILE_TRANSCRIBER_MODEL = "file-transcriber/model"
FILE_TRANSCRIBER_LANGUAGE = "file-transcriber/language"
- FILE_TRANSCRIBER_TEMPERATURE = "file-transcriber/temperature"
FILE_TRANSCRIBER_INITIAL_PROMPT = "file-transcriber/initial-prompt"
FILE_TRANSCRIBER_ENABLE_LLM_TRANSLATION = "file-transcriber/enable-llm-translation"
FILE_TRANSCRIBER_LLM_MODEL = "file-transcriber/llm-model"
@@ -39,6 +49,7 @@ class Settings:
DEFAULT_EXPORT_FILE_NAME = "transcriber/default-export-file-name"
CUSTOM_OPENAI_BASE_URL = "transcriber/custom-openai-base-url"
+ OPENAI_API_MODEL = "transcriber/openai-api-model"
CUSTOM_FASTER_WHISPER_ID = "transcriber/custom-faster-whisper-id"
HUGGINGFACE_MODEL_ID = "transcriber/huggingface-model-id"
@@ -46,11 +57,40 @@ class Settings:
FONT_SIZE = "font-size"
+ UI_LOCALE = "ui-locale"
+
+ USER_IDENTIFIER = "user-identifier"
+
TRANSCRIPTION_TASKS_TABLE_COLUMN_VISIBILITY = (
"transcription-tasks-table/column-visibility"
)
+ TRANSCRIPTION_TASKS_TABLE_COLUMN_ORDER = (
+ "transcription-tasks-table/column-order"
+ )
+ TRANSCRIPTION_TASKS_TABLE_COLUMN_WIDTHS = (
+ "transcription-tasks-table/column-widths"
+ )
+ TRANSCRIPTION_TASKS_TABLE_SORT_STATE = (
+ "transcription-tasks-table/sort-state"
+ )
MAIN_WINDOW = "main-window"
+ TRANSCRIPTION_VIEWER = "transcription-viewer"
+
+ AUDIO_PLAYBACK_RATE = "audio/playback-rate"
+
+ FORCE_CPU = "force-cpu"
+ REDUCE_GPU_MEMORY = "reduce-gpu-memory"
+
+ LAST_UPDATE_CHECK = "update/last-check"
+ UPDATE_AVAILABLE_VERSION = "update/available-version"
+
+ def get_user_identifier(self) -> str:
+ user_id = self.value(self.Key.USER_IDENTIFIER, "")
+ if not user_id:
+ user_id = str(uuid.uuid4())
+ self.set_value(self.Key.USER_IDENTIFIER, user_id)
+ return user_id
def set_value(self, key: Key, value: typing.Any) -> None:
self.settings.setValue(key.value, value)
@@ -86,16 +126,25 @@ class Settings:
return ""
def value(
- self,
- key: Key,
- default_value: typing.Any,
- value_type: typing.Optional[type] = None,
+ self,
+ key: Key,
+ default_value: typing.Any,
+ value_type: typing.Optional[type] = None,
) -> typing.Any:
- return self.settings.value(
+ val = self.settings.value(
key.value,
default_value,
value_type if value_type is not None else type(default_value),
)
+ if (value_type is bool or isinstance(default_value, bool)):
+ if isinstance(val, bool):
+ return val
+ if isinstance(val, str):
+ return val.lower() in ("true", "1", "yes", "on")
+ if isinstance(val, int):
+ return val != 0
+ return bool(val)
+ return val
def clear(self):
self.settings.clear()
diff --git a/buzz/settings/shortcut.py b/buzz/settings/shortcut.py
index f61d8d42..0816f4f6 100644
--- a/buzz/settings/shortcut.py
+++ b/buzz/settings/shortcut.py
@@ -22,6 +22,18 @@ class Shortcut(str, enum.Enum):
VIEW_TRANSCRIPT_TEXT = ("Ctrl+E", _("View Transcript Text"))
VIEW_TRANSCRIPT_TRANSLATION = ("Ctrl+L", _("View Transcript Translation"))
VIEW_TRANSCRIPT_TIMESTAMPS = ("Ctrl+T", _("View Transcript Timestamps"))
+ SEARCH_TRANSCRIPT = ("Ctrl+F", _("Search Transcript"))
+ SEARCH_NEXT = ("Ctrl+Return", _("Go to Next Transcript Search Result"))
+ SEARCH_PREVIOUS = ("Shift+Return", _("Go to Previous Transcript Search Result"))
+ SCROLL_TO_CURRENT_TEXT = ("Ctrl+G", _("Scroll to Current Text"))
+ PLAY_PAUSE_AUDIO = ("Ctrl+P", _("Play/Pause Audio"))
+ REPLAY_CURRENT_SEGMENT = ("Ctrl+Shift+P", _("Replay Current Segment"))
+ TOGGLE_PLAYBACK_CONTROLS = ("Ctrl+Alt+P", _("Toggle Playback Controls"))
+
+ DECREASE_SEGMENT_START = ("Ctrl+Left", _("Decrease Segment Start Time"))
+ INCREASE_SEGMENT_START = ("Ctrl+Right", _("Increase Segment Start Time"))
+ DECREASE_SEGMENT_END = ("Ctrl+Shift+Left", _("Decrease Segment End Time"))
+ INCREASE_SEGMENT_END = ("Ctrl+Shift+Right", _("Increase Segment End Time"))
CLEAR_HISTORY = ("Ctrl+S", _("Clear History"))
STOP_TRANSCRIPTION = ("Ctrl+X", _("Cancel Transcription"))
diff --git a/buzz/store/keyring_store.py b/buzz/store/keyring_store.py
index 329a264e..670be19e 100644
--- a/buzz/store/keyring_store.py
+++ b/buzz/store/keyring_store.py
@@ -1,5 +1,10 @@
+import base64
import enum
+import hashlib
+import json
import logging
+import os
+import sys
import keyring
@@ -10,7 +15,199 @@ class Key(enum.Enum):
OPENAI_API_KEY = "OpenAI API key"
+def _is_linux() -> bool:
+ return sys.platform.startswith("linux")
+
+
+def _get_secrets_file_path() -> str:
+ """Get the path to the local encrypted secrets file."""
+ from platformdirs import user_data_dir
+
+ data_dir = user_data_dir(APP_NAME)
+ os.makedirs(data_dir, exist_ok=True)
+ return os.path.join(data_dir, ".secrets.json")
+
+
+def _get_portal_secret() -> bytes | None:
+ """Get the application secret from XDG Desktop Portal.
+
+ The portal provides a per-application secret that can be used
+ for encrypting application-specific data. This works in sandboxed
+ environments (Snap/Flatpak) via the desktop plug.
+ """
+ if not _is_linux():
+ return None
+
+ try:
+ from jeepney import DBusAddress, new_method_call
+ from jeepney.io.blocking import open_dbus_connection
+ import socket
+
+ # Open connection with file descriptor support enabled
+ conn = open_dbus_connection(bus="SESSION", enable_fds=True)
+
+ portal = DBusAddress(
+ "/org/freedesktop/portal/desktop",
+ bus_name="org.freedesktop.portal.Desktop",
+ interface="org.freedesktop.portal.Secret",
+ )
+
+ # Create a socket pair for receiving the secret
+ sock_read, sock_write = socket.socketpair(socket.AF_UNIX, socket.SOCK_STREAM)
+
+ try:
+ # Build the method call with file descriptor
+ # RetrieveSecret(fd: h, options: a{sv}) -> (handle: o)
+ # Pass the socket object directly - jeepney handles fd passing
+ msg = new_method_call(portal, "RetrieveSecret", "ha{sv}", (sock_write, {}))
+
+ # Send message and get reply
+ conn.send_and_get_reply(msg, timeout=10)
+
+ # Close the write end - portal has it now
+ sock_write.close()
+ sock_write = None
+
+ # Read the secret from the read end
+ # The portal writes the secret and closes its end
+ sock_read.settimeout(5.0)
+ secret_data = b""
+ while True:
+ try:
+ chunk = sock_read.recv(4096)
+ if not chunk:
+ break
+ secret_data += chunk
+ except socket.timeout:
+ break
+
+ if secret_data:
+ return secret_data
+
+ return None
+
+ finally:
+ sock_read.close()
+ if sock_write is not None:
+ sock_write.close()
+
+ except Exception as exc:
+ logging.debug("XDG Portal secret not available: %s", exc)
+ return None
+
+
+def _derive_key(master_secret: bytes, key_name: str) -> bytes:
+ """Derive a key-specific encryption key from the master secret."""
+ # Use PBKDF2 to derive a key for this specific secret
+ return hashlib.pbkdf2_hmac(
+ "sha256",
+ master_secret,
+ f"{APP_NAME}:{key_name}".encode(),
+ 100000,
+ dklen=32,
+ )
+
+
+def _encrypt_value(value: str, key: bytes) -> str:
+ """Encrypt a value using XOR with the derived key (simple encryption)."""
+ # For a more secure implementation, use cryptography library with AES
+ # This is a simple XOR-based encryption suitable for the use case
+ value_bytes = value.encode("utf-8")
+ key_extended = (key * ((len(value_bytes) // len(key)) + 1))[: len(value_bytes)]
+ encrypted = bytes(a ^ b for a, b in zip(value_bytes, key_extended))
+ return base64.b64encode(encrypted).decode("ascii")
+
+
+def _decrypt_value(encrypted: str, key: bytes) -> str:
+ """Decrypt a value using XOR with the derived key."""
+ encrypted_bytes = base64.b64decode(encrypted.encode("ascii"))
+ key_extended = (key * ((len(encrypted_bytes) // len(key)) + 1))[: len(encrypted_bytes)]
+ decrypted = bytes(a ^ b for a, b in zip(encrypted_bytes, key_extended))
+ return decrypted.decode("utf-8")
+
+
+def _load_local_secrets() -> dict:
+ """Load the local secrets file."""
+ secrets_file = _get_secrets_file_path()
+ if os.path.exists(secrets_file):
+ try:
+ with open(secrets_file, "r") as f:
+ return json.load(f)
+ except (json.JSONDecodeError, IOError) as exc:
+ logging.debug("Failed to load secrets file: %s", exc)
+ return {}
+
+
+def _save_local_secrets(secrets: dict) -> None:
+ """Save secrets to the local file."""
+ secrets_file = _get_secrets_file_path()
+ try:
+ with open(secrets_file, "w") as f:
+ json.dump(secrets, f)
+ # Set restrictive permissions
+ os.chmod(secrets_file, 0o600)
+ except IOError as exc:
+ logging.warning("Failed to save secrets file: %s", exc)
+
+
+def _get_portal_password(key: Key) -> str | None:
+ """Get a password using the XDG Desktop Portal Secret."""
+ portal_secret = _get_portal_secret()
+ if portal_secret is None:
+ return None
+
+ secrets = _load_local_secrets()
+ encrypted_value = secrets.get(key.value)
+ if encrypted_value is None:
+ return None
+
+ try:
+ derived_key = _derive_key(portal_secret, key.value)
+ return _decrypt_value(encrypted_value, derived_key)
+ except Exception as exc:
+ logging.debug("Failed to decrypt portal secret: %s", exc)
+ return None
+
+
+def _set_portal_password(key: Key, password: str) -> bool:
+ """Set a password using the XDG Desktop Portal Secret."""
+ portal_secret = _get_portal_secret()
+ if portal_secret is None:
+ return False
+
+ try:
+ derived_key = _derive_key(portal_secret, key.value)
+ encrypted_value = _encrypt_value(password, derived_key)
+
+ secrets = _load_local_secrets()
+ secrets[key.value] = encrypted_value
+ _save_local_secrets(secrets)
+ return True
+ except Exception as exc:
+ logging.debug("Failed to set portal secret: %s", exc)
+ return False
+
+
+def _delete_portal_password(key: Key) -> bool:
+ """Delete a password from the portal-based local storage."""
+ secrets = _load_local_secrets()
+ if key.value in secrets:
+ del secrets[key.value]
+ _save_local_secrets(secrets)
+ return True
+ return False
+
+
def get_password(key: Key) -> str | None:
+ # On Linux, try XDG Desktop Portal first (works in sandboxed environments)
+ if _is_linux():
+ result = _get_portal_password(key)
+
+
+ if result is not None:
+ return result
+
+ # Fall back to keyring (cross-platform, uses Secret Service on Linux)
try:
password = keyring.get_password(APP_NAME, username=key.value)
if password is None:
@@ -22,4 +219,25 @@ def get_password(key: Key) -> str | None:
def set_password(username: Key, password: str) -> None:
+ # On Linux, try XDG Desktop Portal first (works in sandboxed environments)
+ if _is_linux():
+ if _set_portal_password(username, password):
+ return
+
+ # Fall back to keyring (cross-platform, uses Secret Service on Linux)
keyring.set_password(APP_NAME, username.value, password)
+
+
+def delete_password(key: Key) -> None:
+ """Delete a password from the secret store."""
+ # On Linux, also delete from portal storage
+ if _is_linux():
+ _delete_portal_password(key)
+
+ # Delete from keyring
+ try:
+ keyring.delete_password(APP_NAME, key.value)
+ except keyring.errors.PasswordDeleteError:
+ pass # Password doesn't exist, ignore
+ except Exception as exc:
+ logging.warning("Unable to delete from keyring: %s", exc)
diff --git a/buzz/transcriber/file_transcriber.py b/buzz/transcriber/file_transcriber.py
index 80faf8dd..822e7107 100755
--- a/buzz/transcriber/file_transcriber.py
+++ b/buzz/transcriber/file_transcriber.py
@@ -1,15 +1,18 @@
import logging
import os
+import sys
import subprocess
import shutil
import tempfile
from abc import abstractmethod
from typing import Optional, List
+from pathlib import Path
from PyQt6.QtCore import QObject, pyqtSignal, pyqtSlot
from yt_dlp import YoutubeDL
-from buzz.whisper_audio import SAMPLE_RATE
+from buzz import whisper_audio
+from buzz.assets import APP_BASE_DIR
from buzz.transcriber.transcriber import (
FileTranscriptionTask,
get_output_file_path,
@@ -17,6 +20,9 @@ from buzz.transcriber.transcriber import (
OutputFormat,
)
+app_env = os.environ.copy()
+app_env['PATH'] = os.pathsep.join([os.path.join(APP_BASE_DIR, "_internal")] + [app_env['PATH']])
+
class FileTranscriber(QObject):
transcription_task: FileTranscriptionTask
@@ -32,11 +38,35 @@ class FileTranscriber(QObject):
@pyqtSlot()
def run(self):
if self.transcription_task.source == FileTranscriptionTask.Source.URL_IMPORT:
- temp_output_path = tempfile.mktemp()
- wav_file = temp_output_path + ".wav"
-
cookiefile = os.getenv("BUZZ_DOWNLOAD_COOKIEFILE")
+ # First extract info to get the video title
+ extract_options = {
+ "logger": logging.getLogger(),
+ }
+ if cookiefile:
+ extract_options["cookiefile"] = cookiefile
+
+ try:
+ with YoutubeDL(extract_options) as ydl_info:
+ info = ydl_info.extract_info(self.transcription_task.url, download=False)
+ video_title = info.get("title", "audio")
+ except Exception as exc:
+ logging.debug(f"Error extracting video info: {exc}")
+ video_title = "audio"
+
+ # Sanitize title for use as filename
+ video_title = YoutubeDL.sanitize_info({"title": video_title})["title"]
+ # Remove characters that are problematic in filenames
+ for char in ['/', '\\', ':', '*', '?', '"', '<', '>', '|']:
+ video_title = video_title.replace(char, '_')
+
+ # Create temp directory and use video title as filename
+ temp_dir = tempfile.mkdtemp()
+ temp_output_path = os.path.join(temp_dir, video_title)
+ wav_file = temp_output_path + ".wav"
+ wav_file = str(Path(wav_file).resolve())
+
options = {
"format": "bestaudio/best",
"progress_hooks": [self.on_download_progress],
@@ -63,12 +93,25 @@ class FileTranscriber(QObject):
"-threads", "0",
"-i", temp_output_path,
"-ac", "1",
- "-ar", str(SAMPLE_RATE),
+ "-ar", str(whisper_audio.SAMPLE_RATE),
"-acodec", "pcm_s16le",
"-loglevel", "panic",
- wav_file]
+ wav_file
+ ]
- result = subprocess.run(cmd, capture_output=True)
+ if sys.platform == "win32":
+ si = subprocess.STARTUPINFO()
+ si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
+ si.wShowWindow = subprocess.SW_HIDE
+ result = subprocess.run(
+ cmd,
+ capture_output=True,
+ startupinfo=si,
+ env=app_env,
+ creationflags=subprocess.CREATE_NO_WINDOW
+ )
+ else:
+ result = subprocess.run(cmd, capture_output=True)
if len(result.stderr):
logging.warning(f"Error processing downloaded audio. Error: {result.stderr.decode()}")
@@ -106,13 +149,22 @@ class FileTranscriber(QObject):
)
if self.transcription_task.source == FileTranscriptionTask.Source.FOLDER_WATCH:
- shutil.move(
- self.transcription_task.file_path,
- os.path.join(
- self.transcription_task.output_directory,
- os.path.basename(self.transcription_task.file_path),
- ),
+ # Use original_file_path if available (before speech extraction changed file_path)
+ source_path = (
+ self.transcription_task.original_file_path
+ or self.transcription_task.file_path
)
+ if source_path and os.path.exists(source_path):
+ if self.transcription_task.delete_source_file:
+ os.remove(source_path)
+ else:
+ shutil.move(
+ source_path,
+ os.path.join(
+ self.transcription_task.output_directory,
+ os.path.basename(source_path),
+ ),
+ )
def on_download_progress(self, data: dict):
if data["status"] == "downloading":
@@ -127,7 +179,6 @@ class FileTranscriber(QObject):
...
-# TODO: Move to transcription service
def write_output(
path: str,
segments: List[Segment],
@@ -141,13 +192,15 @@ def write_output(
len(segments),
)
- with open(path, "w", encoding="utf-8") as file:
+ with open(os.fsencode(path), "w", encoding="utf-8") as file:
if output_format == OutputFormat.TXT:
combined_text = ""
previous_end_time = None
+ paragraph_split_time = int(os.getenv("BUZZ_PARAGRAPH_SPLIT_TIME", "2000"))
+
for segment in segments:
- if previous_end_time is not None and (segment.start - previous_end_time) >= 2000:
+ if previous_end_time is not None and (segment.start - previous_end_time) >= paragraph_split_time:
combined_text += "\n\n"
combined_text += getattr(segment, segment_key).strip() + " "
previous_end_time = segment.end
@@ -181,3 +234,9 @@ def to_timestamp(ms: float, ms_separator=".") -> str:
sec = int(ms / 1000)
ms = int(ms - sec * 1000)
return f"{hr:02d}:{min:02d}:{sec:02d}{ms_separator}{ms:03d}"
+
+# To detect when transcription source is a video
+VIDEO_EXTENSIONS = {".mp4", ".mov", ".mkv", ".avi", ".m4v", ".webm", ".ogm", ".wmv"}
+
+def is_video_file(path: str) -> bool:
+ return Path(path).suffix.lower() in VIDEO_EXTENSIONS
diff --git a/buzz/transcriber/local_whisper_cpp_server_transcriber.py b/buzz/transcriber/local_whisper_cpp_server_transcriber.py
new file mode 100644
index 00000000..d57252fe
--- /dev/null
+++ b/buzz/transcriber/local_whisper_cpp_server_transcriber.py
@@ -0,0 +1,94 @@
+import logging
+import os
+import time
+import subprocess
+from typing import Optional, List
+
+from PyQt6.QtCore import QObject
+from openai import OpenAI
+
+from buzz.locale import _
+from buzz.assets import APP_BASE_DIR
+from buzz.transcriber.openai_whisper_api_file_transcriber import OpenAIWhisperAPIFileTranscriber
+from buzz.transcriber.transcriber import FileTranscriptionTask, Segment
+
+
+# Currently unused, but kept for future reference
+class LocalWhisperCppServerTranscriber(OpenAIWhisperAPIFileTranscriber):
+ # To be used on Windows only
+ def __init__(self, task: FileTranscriptionTask, parent: Optional["QObject"] = None) -> None:
+ super().__init__(task=task, parent=parent)
+
+ self.process = None
+ self.initialization_error = None
+ cmd = [
+ os.path.join(APP_BASE_DIR, "whisper-server.exe"),
+ "--port", "3000",
+ "--inference-path", "/audio/transcriptions",
+ "--threads", str(os.getenv("BUZZ_WHISPERCPP_N_THREADS", (os.cpu_count() or 8) // 2)),
+ "--model", task.model_path,
+ "--suppress-nst"
+ ]
+
+ if task.transcription_options.language is not None:
+ cmd.extend(["--language", task.transcription_options.language])
+
+ logging.debug(f"Starting Whisper server with command: {' '.join(cmd)}")
+
+ self.process = subprocess.Popen(
+ cmd,
+ stdout=subprocess.DEVNULL, # For debug set to subprocess.PIPE, but it will freeze on Windows after ~30 seconds
+ stderr=subprocess.PIPE,
+ shell=False,
+ creationflags=subprocess.CREATE_NO_WINDOW
+ )
+
+ # Wait for server to start and load model
+ time.sleep(10)
+
+ if self.process is not None and self.process.poll() is None:
+ logging.debug(f"Whisper server started successfully.")
+ logging.debug(f"Model: {task.model_path}")
+ else:
+ stderr_output = ""
+ if self.process.stderr is not None:
+ stderr_output = self.process.stderr.read().decode()
+ logging.error(f"Whisper server failed to start. Error: {stderr_output}")
+ self.initialization_error = _("Whisper server failed to start. Check logs for details.")
+
+ if "ErrorOutOfDeviceMemory" in stderr_output:
+ self.initialization_error = _("Whisper server failed to start due to insufficient memory. "
+ "Please try again with a smaller model. "
+ "To force CPU mode use BUZZ_FORCE_CPU=TRUE environment variable.")
+ return
+
+ self.openai_client = OpenAI(
+ api_key="not-used",
+ base_url="http://127.0.0.1:3000",
+ max_retries=0
+ )
+
+ def transcribe(self) -> List[Segment]:
+ if self.initialization_error:
+ raise Exception(self.initialization_error)
+
+ return super().transcribe()
+
+ def stop(self):
+ if self.process and self.process.poll() is None:
+ try:
+ self.process.terminate()
+ self.process.wait(timeout=5)
+ except subprocess.TimeoutExpired:
+ # Force kill if terminate doesn't work within 5 seconds
+ logging.warning("Whisper server didn't terminate gracefully, force killing")
+ self.process.kill()
+ try:
+ self.process.wait(timeout=2)
+ except subprocess.TimeoutExpired:
+ logging.error("Failed to kill whisper server process")
+ except Exception as e:
+ logging.error(f"Error stopping whisper server: {e}")
+
+ def __del__(self):
+ self.stop()
\ No newline at end of file
diff --git a/buzz/transcriber/openai_whisper_api_file_transcriber.py b/buzz/transcriber/openai_whisper_api_file_transcriber.py
index 55180062..b86b51ba 100644
--- a/buzz/transcriber/openai_whisper_api_file_transcriber.py
+++ b/buzz/transcriber/openai_whisper_api_file_transcriber.py
@@ -1,19 +1,40 @@
import logging
import math
import os
+import sys
import subprocess
import tempfile
+
+from pathlib import Path
from typing import Optional, List
from PyQt6.QtCore import QObject
from openai import OpenAI
from buzz.settings.settings import Settings
-from buzz.model_loader import get_custom_api_whisper_model
-from buzz.transcriber.file_transcriber import FileTranscriber
+from buzz.transcriber.file_transcriber import FileTranscriber, app_env
from buzz.transcriber.transcriber import FileTranscriptionTask, Segment, Task
+def append_segment(result, txt: bytes, start: int, end: int):
+ if txt == b'':
+ return True
+
+ # try-catch will guard against multi-byte utf-8 characters
+ # https://github.com/ggerganov/whisper.cpp/issues/1798
+ try:
+ result.append(
+ Segment(
+ start=start * 10, # centisecond to ms
+ end=end * 10, # centisecond to ms
+ text=txt.decode("utf-8"),
+ )
+ )
+
+ return True
+ except UnicodeDecodeError:
+ return False
+
class OpenAIWhisperAPIFileTranscriber(FileTranscriber):
def __init__(self, task: FileTranscriptionTask, parent: Optional["QObject"] = None):
super().__init__(task=task, parent=parent)
@@ -24,9 +45,13 @@ class OpenAIWhisperAPIFileTranscriber(FileTranscriber):
self.task = task.transcription_options.task
self.openai_client = OpenAI(
api_key=self.transcription_task.transcription_options.openai_access_token,
- base_url=custom_openai_base_url if custom_openai_base_url else None
+ base_url=custom_openai_base_url if custom_openai_base_url else None,
+ max_retries=0
)
- self.whisper_api_model = get_custom_api_whisper_model(custom_openai_base_url)
+ self.whisper_api_model = settings.value(
+ key=Settings.Key.OPENAI_API_MODEL, default_value="whisper-1"
+ )
+ self.word_level_timings = self.transcription_task.transcription_options.word_level_timings
logging.debug("Will use whisper API on %s, %s",
custom_openai_base_url, self.whisper_api_model)
@@ -38,6 +63,7 @@ class OpenAIWhisperAPIFileTranscriber(FileTranscriber):
)
mp3_file = tempfile.mktemp() + ".mp3"
+ mp3_file = str(Path(mp3_file).resolve())
cmd = [
"ffmpeg",
@@ -46,7 +72,19 @@ class OpenAIWhisperAPIFileTranscriber(FileTranscriber):
"-i", self.transcription_task.file_path, mp3_file
]
- result = subprocess.run(cmd, capture_output=True)
+ if sys.platform == "win32":
+ si = subprocess.STARTUPINFO()
+ si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
+ si.wShowWindow = subprocess.SW_HIDE
+ result = subprocess.run(
+ cmd,
+ capture_output=True,
+ startupinfo=si,
+ env=app_env,
+ creationflags = subprocess.CREATE_NO_WINDOW
+ )
+ else:
+ result = subprocess.run(cmd, capture_output=True)
if result.returncode != 0:
logging.warning(f"FFMPEG audio load warning. Process return code was not zero: {result.returncode}")
@@ -63,10 +101,27 @@ class OpenAIWhisperAPIFileTranscriber(FileTranscriber):
"-of", "default=noprint_wrappers=1:nokey=1",
mp3_file,
]
+
# fmt: on
- duration_secs = float(
- subprocess.run(cmd, capture_output=True, check=True).stdout.decode("utf-8")
- )
+ if sys.platform == "win32":
+ si = subprocess.STARTUPINFO()
+ si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
+ si.wShowWindow = subprocess.SW_HIDE
+
+ duration_secs = float(
+ subprocess.run(
+ cmd,
+ capture_output=True,
+ check=True,
+ startupinfo=si,
+ env=app_env,
+ creationflags=subprocess.CREATE_NO_WINDOW
+ ).stdout.decode("utf-8"),
+ )
+ else:
+ duration_secs = float(
+ subprocess.run(cmd, capture_output=True, check=True).stdout.decode("utf-8")
+ )
total_size = os.path.getsize(mp3_file)
max_chunk_size = 25 * 1024 * 1024
@@ -88,6 +143,7 @@ class OpenAIWhisperAPIFileTranscriber(FileTranscriber):
chunk_end = min((i + 1) * chunk_duration, duration_secs)
chunk_file = tempfile.mktemp() + ".mp3"
+ chunk_file = str(Path(chunk_file).resolve())
# fmt: off
cmd = [
@@ -99,7 +155,21 @@ class OpenAIWhisperAPIFileTranscriber(FileTranscriber):
chunk_file,
]
# fmt: on
- subprocess.run(cmd, capture_output=True, check=True)
+ if sys.platform == "win32":
+ si = subprocess.STARTUPINFO()
+ si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
+ si.wShowWindow = subprocess.SW_HIDE
+ subprocess.run(
+ cmd,
+ capture_output=True,
+ check=True,
+ startupinfo=si,
+ env=app_env,
+ creationflags=subprocess.CREATE_NO_WINDOW
+ )
+ else:
+ subprocess.run(cmd, capture_output=True, check=True)
+
logging.debug('Created chunk file "%s"', chunk_file)
segments.extend(
@@ -112,14 +182,29 @@ class OpenAIWhisperAPIFileTranscriber(FileTranscriber):
return segments
+ @staticmethod
+ def get_value(segment, key, default=None):
+ if hasattr(segment, key):
+ return getattr(segment, key)
+ if isinstance(segment, dict):
+ return segment.get(key, default)
+ return default
+
def get_segments_for_file(self, file: str, offset_ms: int = 0):
with open(file, "rb") as file:
+ # gpt-4o models don't support verbose_json format
+ response_format = "json" if self.whisper_api_model.startswith("gpt-4o") else "verbose_json"
+
options = {
"model": self.whisper_api_model,
"file": file,
- "response_format": "verbose_json",
+ "response_format": response_format,
"prompt": self.transcription_task.transcription_options.initial_prompt,
}
+
+ if self.word_level_timings:
+ options["timestamp_granularities"] = ["word"]
+
transcript = (
self.openai_client.audio.transcriptions.create(
**options,
@@ -129,14 +214,80 @@ class OpenAIWhisperAPIFileTranscriber(FileTranscriber):
else self.openai_client.audio.translations.create(**options)
)
- return [
- Segment(
- int(segment["start"] * 1000 + offset_ms),
- int(segment["end"] * 1000 + offset_ms),
- segment["text"],
- )
- for segment in transcript.model_extra["segments"]
- ]
+ segments = getattr(transcript, "segments", None)
+
+ words = getattr(transcript, "words", None)
+ if words is None and "words" in transcript.model_extra:
+ words = transcript.model_extra["words"]
+
+ if segments is None:
+ if "segments" in transcript.model_extra:
+ segments = transcript.model_extra["segments"]
+ else:
+ # gpt-4o models return only text without segments/timestamps
+ segments = [{"text": transcript.text, "start": 0, "end": 0, "words": words}]
+
+ result_segments = []
+ if self.word_level_timings:
+
+ # Detect response from whisper.cpp API
+ first_segment = segments[0] if segments else None
+ is_whisper_cpp = (first_segment and hasattr(first_segment, "tokens")
+ and hasattr(first_segment, "avg_logprob") and hasattr(first_segment, "no_speech_prob"))
+
+ if is_whisper_cpp:
+ txt_buffer = b''
+ txt_start = 0
+ txt_end = 0
+
+ for segment in segments:
+ for word in self.get_value(segment, "words"):
+
+ txt = self.get_value(word, "word").encode("utf-8")
+ start = self.get_value(word, "start")
+ end = self.get_value(word, "end")
+
+ if txt.startswith(b' ') and append_segment(result_segments, txt_buffer, txt_start, txt_end):
+ txt_buffer = txt
+ txt_start = start
+ txt_end = end
+ continue
+
+ if txt.startswith(b', '):
+ txt_buffer += b','
+ append_segment(result_segments, txt_buffer, txt_start, txt_end)
+ txt_buffer = txt.lstrip(b',')
+ txt_start = start
+ txt_end = end
+ continue
+
+ txt_buffer += txt
+ txt_end = end
+
+ # Append the last segment
+ append_segment(result_segments, txt_buffer, txt_start, txt_end)
+
+ else:
+ for segment in segments:
+ for word in self.get_value(segment, "words"):
+ result_segments.append(
+ Segment(
+ int(self.get_value(word, "start") * 1000 + offset_ms),
+ int(self.get_value(word, "end") * 1000 + offset_ms),
+ self.get_value(word, "word"),
+ )
+ )
+ else:
+ result_segments = [
+ Segment(
+ int(self.get_value(segment, "start", 0) * 1000 + offset_ms),
+ int(self.get_value(segment, "end", 0) * 1000 + offset_ms),
+ self.get_value(segment, "text", ""),
+ )
+ for segment in segments
+ ]
+
+ return result_segments
def stop(self):
pass
diff --git a/buzz/transcriber/recording_transcriber.py b/buzz/transcriber/recording_transcriber.py
index 1654bf18..3d0105ba 100644
--- a/buzz/transcriber/recording_transcriber.py
+++ b/buzz/transcriber/recording_transcriber.py
@@ -2,13 +2,18 @@ import datetime
import logging
import platform
import os
+import sys
import wave
import time
import tempfile
import threading
+import subprocess
from typing import Optional
from platformdirs import user_cache_dir
+# Preload CUDA libraries before importing torch
+from buzz import cuda_setup # noqa: F401
+
import torch
import numpy as np
import sounddevice
@@ -17,11 +22,12 @@ from openai import OpenAI
from PyQt6.QtCore import QObject, pyqtSignal
from buzz import whisper_audio
-from buzz.model_loader import WhisperModelSize, ModelType, get_custom_api_whisper_model
+from buzz.locale import _
+from buzz.assets import APP_BASE_DIR
+from buzz.model_loader import ModelType, map_language_to_mms
from buzz.settings.settings import Settings
-from buzz.transcriber.transcriber import TranscriptionOptions, Task
-from buzz.transcriber.whisper_cpp import WhisperCpp
-from buzz.transformers_whisper import TransformersWhisper
+from buzz.transcriber.transcriber import TranscriptionOptions, Task, DEFAULT_WHISPER_TEMPERATURE
+from buzz.transformers_whisper import TransformersTranscriber
from buzz.settings.recording_transcriber_mode import RecordingTranscriberMode
import whisper
@@ -32,6 +38,9 @@ class RecordingTranscriber(QObject):
transcription = pyqtSignal(str)
finished = pyqtSignal()
error = pyqtSignal(str)
+ amplitude_changed = pyqtSignal(float)
+ average_amplitude_changed = pyqtSignal(float)
+ queue_size_changed = pyqtSignal(int)
is_running = False
SAMPLE_RATE = whisper_audio.SAMPLE_RATE
@@ -53,10 +62,10 @@ class RecordingTranscriber(QObject):
self.input_device_index = input_device_index
self.sample_rate = sample_rate if sample_rate is not None else whisper_audio.SAMPLE_RATE
self.model_path = model_path
- self.n_batch_samples = 5 * self.sample_rate # 5 seconds
+ self.n_batch_samples = int(5 * self.sample_rate) # 5 seconds
self.keep_sample_seconds = 0.15
if self.transcriber_mode == RecordingTranscriberMode.APPEND_AND_CORRECT:
- self.n_batch_samples = 3 * self.sample_rate # 3 seconds
+ self.n_batch_samples = int(transcription_options.transcription_step * self.sample_rate)
self.keep_sample_seconds = 1.5
# pause queueing if more than 3 batches behind
self.max_queue_size = 3 * self.n_batch_samples
@@ -64,58 +73,80 @@ class RecordingTranscriber(QObject):
self.mutex = threading.Lock()
self.sounddevice = sounddevice
self.openai_client = None
- self.whisper_api_model = get_custom_api_whisper_model("")
+ self.whisper_api_model = self.settings.value(
+ key=Settings.Key.OPENAI_API_MODEL, default_value="whisper-1"
+ )
+ self.process = None
+ self._stderr_lines: list[bytes] = []
def start(self):
+ self.is_running = True
+ model = None
model_path = self.model_path
keep_samples = int(self.keep_sample_seconds * self.sample_rate)
+ force_cpu = os.getenv("BUZZ_FORCE_CPU", "false")
+ use_cuda = torch.cuda.is_available() and force_cpu == "false"
+
if torch.cuda.is_available():
logging.debug(f"CUDA version detected: {torch.version.cuda}")
if self.transcription_options.model.model_type == ModelType.WHISPER:
- device = "cuda" if torch.cuda.is_available() else "cpu"
+ device = "cuda" if use_cuda else "cpu"
model = whisper.load_model(model_path, device=device)
elif self.transcription_options.model.model_type == ModelType.WHISPER_CPP:
- model = WhisperCpp(model_path)
+ self.start_local_whisper_server()
+ if self.openai_client is None:
+ if not self.is_running:
+ self.finished.emit()
+ else:
+ self.error.emit(_("Whisper server failed to start. Check logs for details."))
+ return
elif self.transcription_options.model.model_type == ModelType.FASTER_WHISPER:
model_root_dir = user_cache_dir("Buzz")
model_root_dir = os.path.join(model_root_dir, "models")
model_root_dir = os.getenv("BUZZ_MODEL_ROOT", model_root_dir)
device = "auto"
- if platform.system() == "Windows":
- logging.debug("CUDA GPUs are currently no supported on Running on Windows, using CPU")
- device = "cpu"
-
if torch.cuda.is_available() and torch.version.cuda < "12":
logging.debug("Unsupported CUDA version (<12), using CPU")
device = "cpu"
+ if not torch.cuda.is_available():
+ logging.debug("CUDA is not available, using CPU")
+ device = "cpu"
+
+ if force_cpu != "false":
+ device = "cpu"
+
+ # Check if user wants reduced GPU memory usage (int8 quantization)
+ reduce_gpu_memory = os.getenv("BUZZ_REDUCE_GPU_MEMORY", "false") != "false"
+ compute_type = "default"
+ if reduce_gpu_memory:
+ compute_type = "int8" if device == "cpu" else "int8_float16"
+ logging.debug(f"Using {compute_type} compute type for reduced memory usage")
+
model = faster_whisper.WhisperModel(
model_size_or_path=model_path,
download_root=model_root_dir,
device=device,
+ compute_type=compute_type,
+ cpu_threads=(os.cpu_count() or 8)//2,
)
- # Fix for large-v3 https://github.com/guillaumekln/faster-whisper/issues/547#issuecomment-1797962599
- if self.transcription_options.model.whisper_model_size == WhisperModelSize.LARGEV3:
- model.feature_extractor.mel_filters = model.feature_extractor.get_mel_filters(
- model.feature_extractor.sampling_rate, model.feature_extractor.n_fft, n_mels=128
- )
elif self.transcription_options.model.model_type == ModelType.OPEN_AI_WHISPER_API:
custom_openai_base_url = self.settings.value(
key=Settings.Key.CUSTOM_OPENAI_BASE_URL, default_value=""
)
- self.whisper_api_model = get_custom_api_whisper_model(custom_openai_base_url)
self.openai_client = OpenAI(
api_key=self.transcription_options.openai_access_token,
- base_url=custom_openai_base_url if custom_openai_base_url else None
+ base_url=custom_openai_base_url if custom_openai_base_url else None,
+ max_retries=0
)
logging.debug("Will use whisper API on %s, %s",
custom_openai_base_url, self.whisper_api_model)
else: # ModelType.HUGGING_FACE
- model = TransformersWhisper(model_path)
+ model = TransformersTranscriber(model_path)
initial_prompt = self.transcription_options.initial_prompt
@@ -127,7 +158,6 @@ class RecordingTranscriber(QObject):
self.input_device_index,
)
- self.is_running = True
try:
with self.sounddevice.InputStream(
samplerate=self.sample_rate,
@@ -139,19 +169,32 @@ class RecordingTranscriber(QObject):
while self.is_running:
if self.queue.size >= self.n_batch_samples:
self.mutex.acquire()
- samples = self.queue[: self.n_batch_samples]
- self.queue = self.queue[self.n_batch_samples - keep_samples:]
+ cut = self.find_silence_cut_point(
+ self.queue[:self.n_batch_samples], self.sample_rate
+ )
+ samples = self.queue[:cut]
+ if self.transcriber_mode == RecordingTranscriberMode.APPEND_AND_CORRECT:
+ self.queue = self.queue[cut - keep_samples:]
+ else:
+ self.queue = self.queue[cut:]
self.mutex.release()
+ amplitude = self.amplitude(samples)
+ self.average_amplitude_changed.emit(amplitude)
+ self.queue_size_changed.emit(self.queue.size)
+
logging.debug(
"Processing next frame, sample size = %s, queue size = %s, amplitude = %s",
samples.size,
self.queue.size,
- self.amplitude(samples),
+ amplitude,
)
- time_started = datetime.datetime.now()
- # TODO Filter out silent audio
+ if amplitude < self.transcription_options.silence_threshold:
+ time.sleep(0.5)
+ continue
+
+ time_started = datetime.datetime.now()
if (
self.transcription_options.model.model_type
@@ -163,18 +206,9 @@ class RecordingTranscriber(QObject):
language=self.transcription_options.language,
task=self.transcription_options.task.value,
initial_prompt=initial_prompt,
- temperature=self.transcription_options.temperature,
- )
- elif (
- self.transcription_options.model.model_type
- == ModelType.WHISPER_CPP
- ):
- assert isinstance(model, WhisperCpp)
- result = model.transcribe(
- audio=samples,
- params=model.get_params(
- transcription_options=self.transcription_options
- ),
+ temperature=DEFAULT_WHISPER_TEMPERATURE,
+ no_speech_threshold=0.4,
+ fp16=False,
)
elif (
self.transcription_options.model.model_type
@@ -187,25 +221,43 @@ class RecordingTranscriber(QObject):
if self.transcription_options.language != ""
else None,
task=self.transcription_options.task.value,
- temperature=self.transcription_options.temperature,
+ # Prevent crash on Windows https://github.com/SYSTRAN/faster-whisper/issues/71#issuecomment-1526263764
+ temperature=0 if platform.system() == "Windows" else DEFAULT_WHISPER_TEMPERATURE,
initial_prompt=self.transcription_options.initial_prompt,
- word_timestamps=self.transcription_options.word_level_timings,
+ word_timestamps=False,
+ without_timestamps=True,
+ no_speech_threshold=0.4,
)
result = {"text": " ".join([segment.text for segment in whisper_segments])}
elif (
self.transcription_options.model.model_type
== ModelType.HUGGING_FACE
):
- assert isinstance(model, TransformersWhisper)
+ assert isinstance(model, TransformersTranscriber)
+ # Handle MMS-specific language and task
+ if model.is_mms_model:
+ language = map_language_to_mms(
+ self.transcription_options.language or "eng"
+ )
+ effective_task = Task.TRANSCRIBE.value
+ else:
+ language = (
+ self.transcription_options.language
+ if self.transcription_options.language is not None
+ else "en"
+ )
+ effective_task = self.transcription_options.task.value
+
result = model.transcribe(
audio=samples,
- language=self.transcription_options.language
- if self.transcription_options.language is not None
- else "en",
- task=self.transcription_options.task.value,
+ language=language,
+ task=effective_task,
)
- else: # OPEN_AI_WHISPER_API
- assert self.openai_client is not None
+ else: # OPEN_AI_WHISPER_API, also used for WHISPER_CPP
+ if self.openai_client is None:
+ self.error.emit(_("A connection error occurred"))
+ return
+
# scale samples to 16-bit PCM
pcm_data = (samples * 32767).astype(np.int16).tobytes()
@@ -222,7 +274,7 @@ class RecordingTranscriber(QObject):
options = {
"model": self.whisper_api_model,
"file": temp_file,
- "response_format": "verbose_json",
+ "response_format": "json",
"prompt": self.transcription_options.initial_prompt,
}
@@ -236,17 +288,24 @@ class RecordingTranscriber(QObject):
else self.openai_client.audio.translations.create(**options)
)
- result = {"text": " ".join(
- [segment["text"] for segment in transcript.model_extra["segments"]])}
+ if "segments" in transcript.model_extra:
+ result = {"text": " ".join(
+ [segment["text"] for segment in transcript.model_extra["segments"]])}
+ else:
+ result = {"text": transcript.text}
+
except Exception as e:
- result = {"text": f"Error: {str(e)}"}
+ if self.is_running:
+ result = {"text": f"Error: {str(e)}"}
+ else:
+ result = {"text": ""}
os.unlink(temp_filename)
next_text: str = result.get("text")
# Update initial prompt between successive recording chunks
- initial_prompt += next_text
+ initial_prompt = next_text
logging.debug(
"Received next result, length = %s, time taken = %s",
@@ -259,8 +318,19 @@ class RecordingTranscriber(QObject):
except PortAudioError as exc:
self.error.emit(str(exc))
- logging.exception("")
+ logging.exception("PortAudio error during recording")
return
+ except Exception as exc:
+ logging.exception("Unexpected error during recording")
+ self.error.emit(str(exc))
+ return
+
+ # Cleanup before emitting finished to avoid destroying QThread
+ # while this function is still on the call stack
+ if model:
+ del model
+ if torch.cuda.is_available():
+ torch.cuda.empty_cache()
self.finished.emit()
@@ -283,13 +353,172 @@ class RecordingTranscriber(QObject):
def stream_callback(self, in_data: np.ndarray, frame_count, time_info, status):
# Try to enqueue the next block. If the queue is already full, drop the block.
chunk: np.ndarray = in_data.ravel()
+
+ amplitude = self.amplitude(chunk)
+ self.amplitude_changed.emit(amplitude)
+
with self.mutex:
if self.queue.size < self.max_queue_size:
self.queue = np.append(self.queue, chunk)
+ @staticmethod
+ def find_silence_cut_point(samples: np.ndarray, sample_rate: int,
+ search_seconds: float = 1.5,
+ window_seconds: float = 0.02,
+ silence_ratio: float = 0.5) -> int:
+ """Return index of the last quiet point in the final search_seconds of samples.
+
+ Scans backwards through short windows; returns the midpoint of the rightmost
+ window whose RMS is below silence_ratio * mean_rms of the search region.
+ Falls back to len(samples) if no quiet window is found.
+ """
+ window = int(window_seconds * sample_rate)
+ search_start = max(0, len(samples) - int(search_seconds * sample_rate))
+ region = samples[search_start:]
+ n_windows = (len(region) - window) // window
+ if n_windows < 1:
+ return len(samples)
+
+ energies = np.array([
+ np.sqrt(np.mean(region[i * window:(i + 1) * window] ** 2))
+ for i in range(n_windows)
+ ])
+ mean_energy = energies.mean()
+ threshold = silence_ratio * mean_energy
+
+ for i in range(n_windows - 1, -1, -1):
+ if energies[i] < threshold:
+ cut = search_start + i * window + window // 2
+ return cut
+
+ return len(samples)
+
@staticmethod
def amplitude(arr: np.ndarray):
- return (abs(max(arr)) + abs(min(arr))) / 2
+ return float(np.sqrt(np.mean(arr**2)))
+
+ def _drain_stderr(self):
+ if self.process and self.process.stderr:
+ for line in self.process.stderr:
+ self._stderr_lines.append(line)
def stop_recording(self):
self.is_running = False
+ if self.process and self.process.poll() is None:
+ self.process.terminate()
+ try:
+ self.process.wait(timeout=5)
+ except subprocess.TimeoutExpired:
+ self.process.kill()
+ logging.warning("Whisper server process had to be killed after timeout")
+
+ def start_local_whisper_server(self):
+ # Reduce verbose HTTP client logging from OpenAI/httpx
+ logging.getLogger("httpx").setLevel(logging.WARNING)
+ logging.getLogger("httpcore").setLevel(logging.WARNING)
+ logging.getLogger("openai").setLevel(logging.WARNING)
+
+ self.transcription.emit(_("Starting Whisper.cpp..."))
+
+ if platform.system() == "Darwin" and platform.machine() == "arm64":
+ self.transcription.emit(_("First time use of a model may take up to several minutest to load."))
+
+ self.process = None
+
+ server_executable = "whisper-server.exe" if sys.platform == "win32" else "whisper-server"
+ server_path = os.path.join(APP_BASE_DIR, "whisper_cpp", server_executable)
+
+ # If running Mac and Windows installed version
+ if not os.path.exists(server_path):
+ server_path = os.path.join(APP_BASE_DIR, "buzz", "whisper_cpp", server_executable)
+
+ cmd = [
+ server_path,
+ "--port", "3003",
+ "--inference-path", "/audio/transcriptions",
+ "--threads", str(os.getenv("BUZZ_WHISPERCPP_N_THREADS", (os.cpu_count() or 8) // 2)),
+ "--model", self.model_path,
+ "--no-timestamps",
+ # Protections against hallucinated repetition. Seems to be problem on macOS
+ # https://github.com/ggml-org/whisper.cpp/issues/1507
+ "--max-context", "64",
+ "--entropy-thold", "2.8",
+ "--suppress-nst"
+ ]
+
+ if self.transcription_options.language is not None:
+ cmd.extend(["--language", self.transcription_options.language])
+ else:
+ cmd.extend(["--language", "auto"])
+
+ logging.debug(f"Starting Whisper server with command: {' '.join(cmd)}")
+
+ try:
+ if sys.platform == "win32":
+ self.process = subprocess.Popen(
+ cmd,
+ stdout=subprocess.DEVNULL,
+ stderr=subprocess.PIPE,
+ shell=False,
+ creationflags=subprocess.CREATE_NO_WINDOW
+ )
+ else:
+ self.process = subprocess.Popen(
+ cmd,
+ stdout=subprocess.DEVNULL,
+ stderr=subprocess.PIPE,
+ shell=False,
+ )
+ except Exception as e:
+ error_msg = f"Failed to start whisper-server subprocess: {str(e)}"
+ logging.error(error_msg)
+ return
+
+ # Drain stderr in a background thread to prevent pipe buffer from filling
+ # up and blocking the subprocess (especially on Windows with compiled exe).
+ self._stderr_lines = []
+ stderr_thread = threading.Thread(target=self._drain_stderr, daemon=True)
+ stderr_thread.start()
+
+ # Wait for server to start and load model, checking periodically
+ for i in range(100): # 10 seconds total, in 0.1s increments
+ if not self.is_running or self.process.poll() is not None:
+ break
+ time.sleep(0.1)
+
+ if self.process is not None and self.process.poll() is None:
+ self.transcription.emit(_("Starting transcription..."))
+ logging.debug(f"Whisper server started successfully.")
+ logging.debug(f"Model: {self.model_path}")
+ else:
+ stderr_thread.join(timeout=2)
+ stderr_output = b"".join(self._stderr_lines).decode(errors="replace")
+ logging.error(f"Whisper server failed to start. Error: {stderr_output}")
+
+ self.transcription.emit(_("Whisper server failed to start. Check logs for details."))
+
+ if "ErrorOutOfDeviceMemory" in stderr_output:
+ message = _(
+ "Whisper server failed to start due to insufficient memory. "
+ "Please try again with a smaller model. "
+ "To force CPU mode use BUZZ_FORCE_CPU=TRUE environment variable."
+ )
+ logging.error(message)
+ self.transcription.emit(message)
+
+ return
+
+ self.openai_client = OpenAI(
+ api_key="not-used",
+ base_url="http://127.0.0.1:3003",
+ timeout=30.0,
+ max_retries=0
+ )
+
+ def __del__(self):
+ if self.process and self.process.poll() is None:
+ self.process.terminate()
+ try:
+ self.process.wait(timeout=5)
+ except subprocess.TimeoutExpired:
+ self.process.kill()
\ No newline at end of file
diff --git a/buzz/transcriber/transcriber.py b/buzz/transcriber/transcriber.py
index 6c75e9e1..7e803e80 100644
--- a/buzz/transcriber/transcriber.py
+++ b/buzz/transcriber/transcriber.py
@@ -21,7 +21,7 @@ class Task(enum.Enum):
TASK_LABEL_TRANSLATIONS = {
- Task.TRANSLATE: _("Translate"),
+ Task.TRANSLATE: _("Translate to English"),
Task.TRANSCRIBE: _("Transcribe"),
}
@@ -35,106 +35,106 @@ class Segment:
LANGUAGES = {
- "en": "english",
- "zh": "chinese",
- "de": "german",
- "es": "spanish",
- "ru": "russian",
- "ko": "korean",
- "fr": "french",
- "ja": "japanese",
- "pt": "portuguese",
- "tr": "turkish",
- "pl": "polish",
- "ca": "catalan",
- "nl": "dutch",
- "ar": "arabic",
- "sv": "swedish",
- "it": "italian",
- "id": "indonesian",
- "hi": "hindi",
- "fi": "finnish",
- "vi": "vietnamese",
- "he": "hebrew",
- "uk": "ukrainian",
- "el": "greek",
- "ms": "malay",
- "cs": "czech",
- "ro": "romanian",
- "da": "danish",
- "hu": "hungarian",
- "ta": "tamil",
- "no": "norwegian",
- "th": "thai",
- "ur": "urdu",
- "hr": "croatian",
- "bg": "bulgarian",
- "lt": "lithuanian",
- "la": "latin",
- "mi": "maori",
- "ml": "malayalam",
- "cy": "welsh",
- "sk": "slovak",
- "te": "telugu",
- "fa": "persian",
- "lv": "latvian",
- "bn": "bengali",
- "sr": "serbian",
- "az": "azerbaijani",
- "sl": "slovenian",
- "kn": "kannada",
- "et": "estonian",
- "mk": "macedonian",
- "br": "breton",
- "eu": "basque",
- "is": "icelandic",
- "hy": "armenian",
- "ne": "nepali",
- "mn": "mongolian",
- "bs": "bosnian",
- "kk": "kazakh",
- "sq": "albanian",
- "sw": "swahili",
- "gl": "galician",
- "mr": "marathi",
- "pa": "punjabi",
- "si": "sinhala",
- "km": "khmer",
- "sn": "shona",
- "yo": "yoruba",
- "so": "somali",
- "af": "afrikaans",
- "oc": "occitan",
- "ka": "georgian",
- "be": "belarusian",
- "tg": "tajik",
- "sd": "sindhi",
- "gu": "gujarati",
- "am": "amharic",
- "yi": "yiddish",
- "lo": "lao",
- "uz": "uzbek",
- "fo": "faroese",
- "ht": "haitian creole",
- "ps": "pashto",
- "tk": "turkmen",
- "nn": "nynorsk",
- "mt": "maltese",
- "sa": "sanskrit",
- "lb": "luxembourgish",
- "my": "myanmar",
- "bo": "tibetan",
- "tl": "tagalog",
- "mg": "malagasy",
- "as": "assamese",
- "tt": "tatar",
- "haw": "hawaiian",
- "ln": "lingala",
- "ha": "hausa",
- "ba": "bashkir",
- "jw": "javanese",
- "su": "sundanese",
- "yue": "cantonese",
+ "en": _("English"),
+ "zh": _("Chinese"),
+ "de": _("German"),
+ "es": _("Spanish"),
+ "ru": _("Russian"),
+ "ko": _("Korean"),
+ "fr": _("French"),
+ "ja": _("Japanese"),
+ "pt": _("Portuguese"),
+ "tr": _("Turkish"),
+ "pl": _("Polish"),
+ "ca": _("Catalan"),
+ "nl": _("Dutch"),
+ "ar": _("Arabic"),
+ "sv": _("Swedish"),
+ "it": _("Italian"),
+ "id": _("Indonesian"),
+ "hi": _("Hindi"),
+ "fi": _("Finnish"),
+ "vi": _("Vietnamese"),
+ "he": _("Hebrew"),
+ "uk": _("Ukrainian"),
+ "el": _("Greek"),
+ "ms": _("Malay"),
+ "cs": _("Czech"),
+ "ro": _("Romanian"),
+ "da": _("Danish"),
+ "hu": _("Hungarian"),
+ "ta": _("Tamil"),
+ "no": _("Norwegian"),
+ "th": _("Thai"),
+ "ur": _("Urdu"),
+ "hr": _("Croatian"),
+ "bg": _("Bulgarian"),
+ "lt": _("Lithuanian"),
+ "la": _("Latin"),
+ "mi": _("Maori"),
+ "ml": _("Malayalam"),
+ "cy": _("Welsh"),
+ "sk": _("Slovak"),
+ "te": _("Telugu"),
+ "fa": _("Persian"),
+ "lv": _("Latvian"),
+ "bn": _("Bengali"),
+ "sr": _("Serbian"),
+ "az": _("Azerbaijani"),
+ "sl": _("Slovenian"),
+ "kn": _("Kannada"),
+ "et": _("Estonian"),
+ "mk": _("Macedonian"),
+ "br": _("Breton"),
+ "eu": _("Basque"),
+ "is": _("Icelandic"),
+ "hy": _("Armenian"),
+ "ne": _("Nepali"),
+ "mn": _("Mongolian"),
+ "bs": _("Bosnian"),
+ "kk": _("Kazakh"),
+ "sq": _("Albanian"),
+ "sw": _("Swahili"),
+ "gl": _("Galician"),
+ "mr": _("Marathi"),
+ "pa": _("Punjabi"),
+ "si": _("Sinhala"),
+ "km": _("Khmer"),
+ "sn": _("Shona"),
+ "yo": _("Yoruba"),
+ "so": _("Somali"),
+ "af": _("Afrikaans"),
+ "oc": _("Occitan"),
+ "ka": _("Georgian"),
+ "be": _("Belarusian"),
+ "tg": _("Tajik"),
+ "sd": _("Sindhi"),
+ "gu": _("Gujarati"),
+ "am": _("Amharic"),
+ "yi": _("Yiddish"),
+ "lo": _("Lao"),
+ "uz": _("Uzbek"),
+ "fo": _("Faroese"),
+ "ht": _("Haitian Creole"),
+ "ps": _("Pashto"),
+ "tk": _("Turkmen"),
+ "nn": _("Nynorsk"),
+ "mt": _("Maltese"),
+ "sa": _("Sanskrit"),
+ "lb": _("Luxembourgish"),
+ "my": _("Myanmar"),
+ "bo": _("Tibetan"),
+ "tl": _("Tagalog"),
+ "mg": _("Malagasy"),
+ "as": _("Assamese"),
+ "tt": _("Tatar"),
+ "haw": _("Hawaiian"),
+ "ln": _("Lingala"),
+ "ha": _("Hausa"),
+ "ba": _("Bashkir"),
+ "jw": _("Javanese"),
+ "su": _("Sundanese"),
+ "yue": _("Cantonese"),
}
@@ -144,6 +144,7 @@ class TranscriptionOptions:
task: Task = Task.TRANSCRIBE
model: TranscriptionModel = field(default_factory=TranscriptionModel)
word_level_timings: bool = False
+ extract_speech: bool = False
temperature: Tuple[float, ...] = DEFAULT_WHISPER_TEMPERATURE
initial_prompt: str = ""
openai_access_token: str = field(
@@ -152,6 +153,9 @@ class TranscriptionOptions:
enable_llm_translation: bool = False
llm_prompt: str = ""
llm_model: str = ""
+ silence_threshold: float = 0.0025
+ line_separator: str = "\n\n"
+ transcription_step: float = 3.5
def humanize_language(language: str) -> str:
@@ -198,6 +202,8 @@ class FileTranscriptionTask:
output_directory: Optional[str] = None
source: Source = Source.FILE_IMPORT
file_path: Optional[str] = None
+ original_file_path: Optional[str] = None # Original path before speech extraction
+ delete_source_file: bool = False
url: Optional[str] = None
fraction_downloaded: float = 0.0
@@ -212,8 +218,10 @@ class Stopped(Exception):
pass
-SUPPORTED_AUDIO_FORMATS = "Audio files (*.mp3 *.wav *.m4a *.ogg *.opus *.flac);;\
-Video files (*.mp4 *.webm *.ogm *.mov *.mkv *.avi *.wmv);;All files (*.*)"
+SUPPORTED_AUDIO_FORMATS = "Media files (*.mp3 *.wav *.m4a *.ogg *.opus *.flac *.mp4 *.webm *.ogm *.mov *.mkv *.avi *.wmv);;\
+Audio files (*.mp3 *.wav *.m4a *.ogg *.opus *.flac);;\
+Video files (*.mp4 *.webm *.ogm *.mov *.mkv *.avi *.wmv);;\
+All files (*.*)"
def get_output_file_path(
@@ -226,6 +234,9 @@ def get_output_file_path(
export_file_name_template: str | None = None,
):
input_file_name = os.path.splitext(os.path.basename(file_path))[0]
+ # Remove "_speech" suffix from extracted speech files
+ if input_file_name.endswith("_speech"):
+ input_file_name = input_file_name[:-7]
date_time_now = datetime.datetime.now().strftime("%d-%b-%Y %H-%M-%S")
export_file_name_template = (
diff --git a/buzz/transcriber/whisper_cpp.py b/buzz/transcriber/whisper_cpp.py
index c8252542..db4aff84 100644
--- a/buzz/transcriber/whisper_cpp.py
+++ b/buzz/transcriber/whisper_cpp.py
@@ -1,253 +1,383 @@
import platform
import os
-import ctypes
+import sys
import logging
-from typing import Union, Any, List
-
-import numpy as np
-
-from buzz import whisper_audio
-from buzz.model_loader import LOADED_WHISPER_CPP_BINARY
-from buzz.transcriber.transcriber import Segment, Task, TranscriptionOptions
-
-if LOADED_WHISPER_CPP_BINARY:
- from buzz import whisper_cpp
+import subprocess
+import json
+from typing import List
+from buzz.assets import APP_BASE_DIR
+from buzz.transcriber.transcriber import Segment, Task, FileTranscriptionTask
+from buzz.transcriber.file_transcriber import app_env
-IS_COREML_SUPPORTED = False
-if platform.system() == "Darwin" and platform.machine() == "arm64":
- try:
- from buzz import whisper_cpp_coreml # noqa: F401
+IS_VULKAN_SUPPORTED = False
+try:
+ import vulkan
- IS_COREML_SUPPORTED = True
- except ImportError:
- logging.exception("")
+ instance = vulkan.vkCreateInstance(vulkan.VkInstanceCreateInfo(), None)
+ vulkan.vkDestroyInstance(instance, None)
+ vulkan_version = vulkan.vkEnumerateInstanceVersion()
+ major = (vulkan_version >> 22) & 0x3FF
+ minor = (vulkan_version >> 12) & 0x3FF
+
+ logging.debug("Vulkan version = %s.%s", major, minor)
+
+ # On macOS, default whisper_cpp is compiled with CoreML (Apple Silicon) or Vulkan (Intel).
+ if platform.system() in ("Linux", "Windows") and ((major > 1) or (major == 1 and minor >= 2)):
+ IS_VULKAN_SUPPORTED = True
+
+except (ImportError, Exception) as e:
+ logging.debug(f"Vulkan import error: {e}")
+
+ IS_VULKAN_SUPPORTED = False
class WhisperCpp:
- def __init__(self, model: str) -> None:
+ @staticmethod
+ def transcribe(task: FileTranscriptionTask) -> List[Segment]:
+ """Transcribe audio using whisper-cli subprocess."""
+ cli_executable = "whisper-cli.exe" if sys.platform == "win32" else "whisper-cli"
+ whisper_cli_path = os.path.join(APP_BASE_DIR, "whisper_cpp", cli_executable)
- self.is_coreml_supported = IS_COREML_SUPPORTED
+ # If running Mac and Windows installed version
+ if not os.path.exists(whisper_cli_path):
+ whisper_cli_path = os.path.join(APP_BASE_DIR, "buzz", "whisper_cpp", cli_executable)
- if self.is_coreml_supported:
- coreml_model = model.replace(".bin", "-encoder.mlmodelc")
- if not os.path.exists(coreml_model):
- self.is_coreml_supported = False
-
- logging.debug(f"WhisperCpp model {model}, (Core ML: {self.is_coreml_supported})")
-
- self.instance = self.get_instance()
- self.ctx = self.instance.init_from_file(model)
- self.segments: List[Segment] = []
-
- def append_segment(self, txt: bytes, start: int, end: int):
- if txt == b'':
- return True
-
- # try-catch will guard against multi-byte utf-8 characters
- # https://github.com/ggerganov/whisper.cpp/issues/1798
- try:
- self.segments.append(
- Segment(
- start=start * 10, # centisecond to ms
- end=end * 10, # centisecond to ms
- text=txt.decode("utf-8"),
- )
- )
-
- return True
- except UnicodeDecodeError:
- return False
-
- def transcribe(self, audio: Union[np.ndarray, str], params: Any):
- self.segments = []
-
- if isinstance(audio, str):
- audio = whisper_audio.load_audio(audio)
-
- logging.debug("Loaded audio with length = %s", len(audio))
-
- whisper_cpp_audio = audio.ctypes.data_as(ctypes.POINTER(ctypes.c_float))
- result = self.instance.full(
- self.ctx, params, whisper_cpp_audio, len(audio)
+ language = (
+ task.transcription_options.language
+ if task.transcription_options.language is not None
+ else "en"
)
- if result != 0:
- raise Exception(f"Error from whisper.cpp: {result}")
- n_segments = self.instance.full_n_segments(self.ctx)
+ # Check if file format is supported, convert to WAV if not
+ supported_formats = ('.mp3', '.wav', '.flac')
+ file_ext = os.path.splitext(task.file_path)[1].lower()
- if params.token_timestamps:
- # Will process word timestamps
- txt_buffer = b''
- txt_start = 0
- txt_end = 0
+ temp_file = None
+ file_to_process = task.file_path
- for i in range(n_segments):
- txt = self.instance.full_get_segment_text(self.ctx, i)
- start = self.instance.full_get_segment_t0(self.ctx, i)
- end = self.instance.full_get_segment_t1(self.ctx, i)
+ if file_ext not in supported_formats:
+ temp_file = task.file_path + ".wav"
- if txt.startswith(b' ') and self.append_segment(txt_buffer, txt_start, txt_end):
- txt_buffer = txt
- txt_start = start
- txt_end = end
- continue
+ logging.info(f"Converting {task.file_path} to WAV format")
- if txt.startswith(b', '):
- txt_buffer += b','
- self.append_segment(txt_buffer, txt_start, txt_end)
- txt_buffer = txt.lstrip(b',')
- txt_start = start
- txt_end = end
- continue
+ # Convert using ffmpeg
+ ffmpeg_cmd = [
+ "ffmpeg",
+ "-i", task.file_path,
+ "-ar", "16000", # 16kHz sample rate (whisper standard)
+ "-ac", "1", # mono
+ "-y", # overwrite output file
+ temp_file
+ ]
- txt_buffer += txt
- txt_end = end
+ try:
+ if sys.platform == "win32":
+ si = subprocess.STARTUPINFO()
+ si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
+ si.wShowWindow = subprocess.SW_HIDE
+ result = subprocess.run(
+ ffmpeg_cmd,
+ capture_output=True,
+ startupinfo=si,
+ env=app_env,
+ creationflags=subprocess.CREATE_NO_WINDOW,
+ check = True
+ )
+ else:
+ result = subprocess.run(ffmpeg_cmd, capture_output=True, check=True)
- # Append the last segment
- self.append_segment(txt_buffer, txt_start, txt_end)
+ file_to_process = temp_file
+ except subprocess.CalledProcessError as e:
+ raise Exception(f"Failed to convert audio file: {e.stderr.decode()}")
+ except FileNotFoundError:
+ raise Exception("ffmpeg not found. Please install ffmpeg to process this audio format.")
+
+ # Build the command
+ cmd = [
+ whisper_cli_path,
+ "--model", task.model_path,
+ "--language", language,
+ "--print-progress",
+ "--suppress-nst",
+ # Protections against hallucinated repetition. Seems to be problem on macOS
+ # https://github.com/ggml-org/whisper.cpp/issues/1507
+ "--max-context", "64",
+ "--entropy-thold", "2.8",
+ "--output-json-full",
+ "--threads", str(os.getenv("BUZZ_WHISPERCPP_N_THREADS", (os.cpu_count() or 8) // 2)),
+ "-f", file_to_process,
+ ]
+
+ # Add VAD if the model is available
+ vad_model_path = os.path.join(os.path.dirname(whisper_cli_path), "ggml-silero-v6.2.0.bin")
+ if os.path.exists(vad_model_path):
+ cmd.extend(["--vad", "--vad-model", vad_model_path])
+ # Add translate flag if needed
+ if task.transcription_options.task == Task.TRANSLATE:
+ cmd.extend(["--translate"])
+
+ # Force CPU if specified
+ force_cpu = os.getenv("BUZZ_FORCE_CPU", "false")
+ if force_cpu != "false" or (not IS_VULKAN_SUPPORTED and platform.system() != "Darwin"):
+ cmd.extend(["--no-gpu"])
+
+ print(f"Running Whisper CLI: {' '.join(cmd)}")
+
+ # Run the whisper-cli process
+ if sys.platform == "win32":
+ si = subprocess.STARTUPINFO()
+ si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
+ si.wShowWindow = subprocess.SW_HIDE
+ process = subprocess.Popen(
+ cmd,
+ stdout=subprocess.DEVNULL,
+ stderr=subprocess.PIPE,
+ text=True,
+ startupinfo=si,
+ env=app_env,
+ creationflags=subprocess.CREATE_NO_WINDOW
+ )
else:
- for i in range(n_segments):
- txt = self.instance.full_get_segment_text(self.ctx, i)
- start = self.instance.full_get_segment_t0(self.ctx, i)
- end = self.instance.full_get_segment_t1(self.ctx, i)
+ process = subprocess.Popen(
+ cmd,
+ stdout=subprocess.DEVNULL,
+ stderr=subprocess.PIPE,
+ text=True,
+ )
+
+ # Capture stderr for progress updates
+ stderr_output = []
+ while True:
+ line = process.stderr.readline()
+ if not line:
+ break
+ stderr_output.append(line.strip())
+ # Progress is written to stderr
+ sys.stderr.write(line)
+
+ process.wait()
+
+ if process.returncode != 0:
+ # Clean up temp file if conversion was done
+ if temp_file and os.path.exists(temp_file):
+ try:
+ os.remove(temp_file)
+ except Exception as e:
+ print(f"Failed to remove temporary file {temp_file}: {e}")
+ raise Exception(f"whisper-cli failed with return code {process.returncode}")
- self.append_segment(txt, start, end)
+ # Find and read the generated JSON file
+ # whisper-cli generates: input_file.ext.json (e.g., file.mp3.json)
+ json_output_path = f"{file_to_process}.json"
+
+ try:
+ # Read JSON with latin-1 to preserve raw bytes, then handle encoding per field
+ # This is needed because whisper-cli can write invalid UTF-8 sequences for multi-byte characters
+ with open(json_output_path, 'r', encoding='latin-1') as f:
+ result = json.load(f)
+
+ segments = []
+
+ # Handle word-level timings
+ if task.transcription_options.word_level_timings:
+ # Extract word-level timestamps from tokens array
+ # Combine tokens into words using similar logic as whisper_cpp.py
+ transcription = result.get("transcription", [])
- return {
- "segments": self.segments,
- "text": "".join([segment.text for segment in self.segments]),
- }
+ # Languages that don't use spaces between words
+ # For these, each token is treated as a separate word
+ non_space_languages = {"zh", "ja", "th", "lo", "km", "my"}
+ is_non_space_language = language in non_space_languages
- def get_instance(self):
- if self.is_coreml_supported:
- return WhisperCppCoreML()
- return WhisperCppCpu()
+ for segment_data in transcription:
+ tokens = segment_data.get("tokens", [])
- def get_params(
- self,
- transcription_options: TranscriptionOptions,
- print_realtime=False,
- print_progress=False,
- ):
- params = self.instance.full_default_params(whisper_cpp.WHISPER_SAMPLING_GREEDY)
- params.n_threads = int(os.getenv("BUZZ_WHISPERCPP_N_THREADS", 4))
- params.print_realtime = print_realtime
- params.print_progress = print_progress
- params.language = self.instance.get_string((transcription_options.language or "en"))
- params.translate = transcription_options.task == Task.TRANSLATE
- params.max_len = ctypes.c_int(1)
- params.max_len = 1 if transcription_options.word_level_timings else 0
- params.token_timestamps = transcription_options.word_level_timings
- params.initial_prompt = self.instance.get_string(transcription_options.initial_prompt)
- return params
+ if is_non_space_language:
+ # For languages without spaces (Chinese, Japanese, etc.),
+ # each complete UTF-8 character is treated as a separate word.
+ # Some characters may be split across multiple tokens as raw bytes.
+ char_buffer = b""
+ char_start = 0
+ char_end = 0
- def __del__(self):
- if self.instance:
- self.instance.free(self.ctx)
+ def flush_complete_chars(buffer: bytes, start: int, end: int):
+ """Extract and output all complete UTF-8 characters from buffer.
+ Returns any remaining incomplete bytes."""
+ nonlocal segments
+ remaining = buffer
+ pos = 0
+ while pos < len(remaining):
+ # Try to decode one character at a time
+ for char_len in range(1, min(5, len(remaining) - pos + 1)):
+ try:
+ char = remaining[pos:pos + char_len].decode("utf-8")
+ # Successfully decoded a character
+ if char.strip():
+ segments.append(
+ Segment(
+ start=start,
+ end=end,
+ text=char,
+ translation=""
+ )
+ )
+ pos += char_len
+ break
+ except UnicodeDecodeError:
+ if char_len == 4 or pos + char_len >= len(remaining):
+ # Incomplete character at end - return as remaining
+ return remaining[pos:]
+ else:
+ # Couldn't decode, might be incomplete at end
+ return remaining[pos:]
-class WhisperCppInterface:
- def full_default_params(self, sampling: int):
- raise NotImplementedError
+ return b""
- def get_string(self, string: str):
- raise NotImplementedError
+ for token_data in tokens:
+ token_text = token_data.get("text", "")
- def get_encoder_begin_callback(self, callback):
- raise NotImplementedError
+ # Skip special tokens like [_TT_], [_BEG_]
+ if token_text.startswith("[_"):
+ continue
- def get_new_segment_callback(self, callback):
- raise NotImplementedError
+ if not token_text:
+ continue
- def init_from_file(self, model: str):
- raise NotImplementedError
+ token_start = int(token_data.get("offsets", {}).get("from", 0))
+ token_end = int(token_data.get("offsets", {}).get("to", 0))
- def full(self, ctx, params, audio, length):
- raise NotImplementedError
+ # Convert latin-1 string back to original bytes
+ token_bytes = token_text.encode("latin-1")
- def full_n_segments(self, ctx):
- raise NotImplementedError
+ if not char_buffer:
+ char_start = token_start
- def full_get_segment_text(self, ctx, i):
- raise NotImplementedError
+ char_buffer += token_bytes
+ char_end = token_end
- def full_get_segment_t0(self, ctx, i):
- raise NotImplementedError
+ # Try to flush complete characters
+ char_buffer = flush_complete_chars(char_buffer, char_start, char_end)
- def full_get_segment_t1(self, ctx, i):
- raise NotImplementedError
+ # If buffer was fully flushed, reset start time for next char
+ if not char_buffer:
+ char_start = token_end
- def free(self, ctx):
- raise NotImplementedError
+ # Flush any remaining buffer at end of segment
+ if char_buffer:
+ flush_complete_chars(char_buffer, char_start, char_end)
+ else:
+ # For space-separated languages, accumulate tokens into words
+ word_buffer = b""
+ word_start = 0
+ word_end = 0
+ def append_word(buffer: bytes, start: int, end: int):
+ """Try to decode and append a word segment, handling multi-byte UTF-8"""
+ if not buffer:
+ return True
-class WhisperCppCpu(WhisperCppInterface):
- def full_default_params(self, sampling: int):
- return whisper_cpp.whisper_full_default_params(sampling)
+ # Try to decode as UTF-8
+ # https://github.com/ggerganov/whisper.cpp/issues/1798
+ try:
+ text = buffer.decode("utf-8").strip()
+ if text:
+ segments.append(
+ Segment(
+ start=start,
+ end=end,
+ text=text,
+ translation=""
+ )
+ )
+ return True
+ except UnicodeDecodeError:
+ # Multi-byte character is split, continue accumulating
+ return False
- def get_string(self, string: str):
- return whisper_cpp.String(string.encode())
+ for token_data in tokens:
+ # Token text is read as latin-1, need to convert to bytes to get original data
+ token_text = token_data.get("text", "")
- def get_encoder_begin_callback(self, callback):
- return whisper_cpp.whisper_encoder_begin_callback(callback)
+ # Skip special tokens like [_TT_], [_BEG_]
+ if token_text.startswith("[_"):
+ continue
- def get_new_segment_callback(self, callback):
- return whisper_cpp.whisper_new_segment_callback(callback)
+ if not token_text:
+ continue
- def init_from_file(self, model: str):
- return whisper_cpp.whisper_init_from_file(model.encode())
+ # Skip low probability tokens
+ token_p = token_data.get("p", 1.0)
+ if token_p < 0.01:
+ continue
- def full(self, ctx, params, audio, length):
- return whisper_cpp.whisper_full(ctx, params, audio, length)
+ token_start = int(token_data.get("offsets", {}).get("from", 0))
+ token_end = int(token_data.get("offsets", {}).get("to", 0))
- def full_n_segments(self, ctx):
- return whisper_cpp.whisper_full_n_segments(ctx)
+ # Convert latin-1 string back to original bytes
+ # (latin-1 preserves byte values as code points)
+ token_bytes = token_text.encode("latin-1")
- def full_get_segment_text(self, ctx, i):
- return whisper_cpp.whisper_full_get_segment_text(ctx, i)
+ # Check if token starts with space - indicates new word
+ if token_bytes.startswith(b" ") and word_buffer:
+ # Save previous word
+ append_word(word_buffer, word_start, word_end)
+ # Start new word
+ word_buffer = token_bytes
+ word_start = token_start
+ word_end = token_end
+ elif token_bytes.startswith(b", "):
+ # Handle comma - save word with comma, then start new word
+ word_buffer += b","
+ append_word(word_buffer, word_start, word_end)
+ word_buffer = token_bytes.lstrip(b",")
+ word_start = token_start
+ word_end = token_end
+ else:
+ # Accumulate token into current word
+ if not word_buffer:
+ word_start = token_start
+ word_buffer += token_bytes
+ word_end = token_end
- def full_get_segment_t0(self, ctx, i):
- return whisper_cpp.whisper_full_get_segment_t0(ctx, i)
+ # Add the last word
+ append_word(word_buffer, word_start, word_end)
+ else:
+ # Use segment-level timestamps
+ transcription = result.get("transcription", [])
+ for segment_data in transcription:
+ # Segment text is also read as latin-1, convert back to UTF-8
+ segment_text_latin1 = segment_data.get("text", "")
+ try:
+ # Convert latin-1 string to bytes, then decode as UTF-8
+ segment_text = segment_text_latin1.encode("latin-1").decode("utf-8").strip()
+ except (UnicodeDecodeError, UnicodeEncodeError):
+ # If conversion fails, use the original text
+ segment_text = segment_text_latin1.strip()
+
+ segments.append(
+ Segment(
+ start=int(segment_data.get("offsets", {}).get("from", 0)),
+ end=int(segment_data.get("offsets", {}).get("to", 0)),
+ text=segment_text,
+ translation=""
+ )
+ )
+
+ return segments
+ finally:
+ # Clean up the generated JSON file
+ if os.path.exists(json_output_path):
+ try:
+ os.remove(json_output_path)
+ except Exception as e:
+ print(f"Failed to remove JSON output file {json_output_path}: {e}")
- def full_get_segment_t1(self, ctx, i):
- return whisper_cpp.whisper_full_get_segment_t1(ctx, i)
-
- def free(self, ctx):
- return whisper_cpp.whisper_free(ctx)
-
-
-class WhisperCppCoreML(WhisperCppInterface):
- def full_default_params(self, sampling: int):
- return whisper_cpp_coreml.whisper_full_default_params(sampling)
-
- def get_string(self, string: str):
- return whisper_cpp_coreml.String(string.encode())
-
- def get_encoder_begin_callback(self, callback):
- return whisper_cpp_coreml.whisper_encoder_begin_callback(callback)
-
- def get_new_segment_callback(self, callback):
- return whisper_cpp_coreml.whisper_new_segment_callback(callback)
-
- def init_from_file(self, model: str):
- return whisper_cpp_coreml.whisper_init_from_file(model.encode())
-
- def full(self, ctx, params, audio, length):
- return whisper_cpp_coreml.whisper_full(ctx, params, audio, length)
-
- def full_n_segments(self, ctx):
- return whisper_cpp_coreml.whisper_full_n_segments(ctx)
-
- def full_get_segment_text(self, ctx, i):
- return whisper_cpp_coreml.whisper_full_get_segment_text(ctx, i)
-
- def full_get_segment_t0(self, ctx, i):
- return whisper_cpp_coreml.whisper_full_get_segment_t0(ctx, i)
-
- def full_get_segment_t1(self, ctx, i):
- return whisper_cpp_coreml.whisper_full_get_segment_t1(ctx, i)
-
- def free(self, ctx):
- return whisper_cpp_coreml.whisper_free(ctx)
+ # Clean up temporary audio file if conversion was done
+ if temp_file and os.path.exists(temp_file):
+ try:
+ os.remove(temp_file)
+ except Exception as e:
+ print(f"Failed to remove temporary file {temp_file}: {e}")
\ No newline at end of file
diff --git a/buzz/transcriber/whisper_cpp_file_transcriber.py b/buzz/transcriber/whisper_cpp_file_transcriber.py
deleted file mode 100644
index 953a4ca6..00000000
--- a/buzz/transcriber/whisper_cpp_file_transcriber.py
+++ /dev/null
@@ -1,91 +0,0 @@
-import ctypes
-import logging
-import sys
-from typing import Optional, List
-
-from PyQt6.QtCore import QObject
-
-from buzz import whisper_audio
-from buzz.transcriber.file_transcriber import FileTranscriber
-from buzz.transcriber.transcriber import FileTranscriptionTask, Segment, Stopped
-from buzz.transcriber.whisper_cpp import WhisperCpp
-
-
-class WhisperCppFileTranscriber(FileTranscriber):
- duration_audio_ms = sys.maxsize # max int
- state: "WhisperCppFileTranscriber.State"
-
- class State:
- running = True
-
- def __init__(
- self, task: FileTranscriptionTask, parent: Optional["QObject"] = None
- ) -> None:
- super().__init__(task, parent)
-
- self.transcription_options = task.transcription_options
- self.model_path = task.model_path
- self.model = WhisperCpp(model=self.model_path)
- self.state = self.State()
-
- def transcribe(self) -> List[Segment]:
- self.state.running = True
-
- logging.debug(
- "Starting whisper_cpp file transcription, file path = %s, language = %s, "
- "task = %s, model_path = %s, word level timings = %s",
- self.transcription_task.file_path,
- self.transcription_options.language,
- self.transcription_options.task,
- self.model_path,
- self.transcription_options.word_level_timings,
- )
-
- audio = whisper_audio.load_audio(self.transcription_task.file_path)
- self.duration_audio_ms = len(audio) * 1000 / whisper_audio.SAMPLE_RATE
-
- whisper_params = self.model.get_params(
- transcription_options=self.transcription_options
- )
- whisper_params.encoder_begin_callback_user_data = ctypes.c_void_p(
- id(self.state)
- )
- whisper_params.encoder_begin_callback = (
- self.model.get_instance().get_encoder_begin_callback(self.encoder_begin_callback)
- )
- whisper_params.new_segment_callback_user_data = ctypes.c_void_p(id(self.state))
- whisper_params.new_segment_callback = self.model.get_instance().get_new_segment_callback(
- self.new_segment_callback
- )
-
- result = self.model.transcribe(
- audio=self.transcription_task.file_path, params=whisper_params
- )
-
- if not self.state.running:
- raise Stopped
-
- self.state.running = False
- return result["segments"]
-
- def new_segment_callback(self, ctx, _state, _n_new, user_data):
- n_segments = self.model.get_instance().full_n_segments(ctx)
- t1 = self.model.get_instance().full_get_segment_t1(ctx, n_segments - 1)
- # t1 seems to sometimes be larger than the duration when the
- # audio ends in silence. Trim to fix the displayed progress.
- progress = min(t1 * 10, self.duration_audio_ms)
- state: WhisperCppFileTranscriber.State = ctypes.cast(
- user_data, ctypes.py_object
- ).value
- if state.running:
- self.progress.emit((progress, self.duration_audio_ms))
-
- @staticmethod
- def encoder_begin_callback(_ctx, _state, user_data):
- state: WhisperCppFileTranscriber.State = ctypes.cast(
- user_data, ctypes.py_object
- ).value
- return state.running == 1
-
- def stop(self):
- self.state.running = False
diff --git a/buzz/transcriber/whisper_file_transcriber.py b/buzz/transcriber/whisper_file_transcriber.py
index b602b0c9..8633043c 100644
--- a/buzz/transcriber/whisper_file_transcriber.py
+++ b/buzz/transcriber/whisper_file_transcriber.py
@@ -5,8 +5,13 @@ import multiprocessing
import re
import os
import sys
+
+# Preload CUDA libraries before importing torch - required for subprocess contexts
+from buzz import cuda_setup # noqa: F401
+
import torch
import platform
+import subprocess
from platformdirs import user_cache_dir
from multiprocessing.connection import Connection
from threading import Thread
@@ -17,11 +22,13 @@ from PyQt6.QtCore import QObject
from buzz import whisper_audio
from buzz.conn import pipe_stderr
-from buzz.model_loader import ModelType, WhisperModelSize
-from buzz.transformers_whisper import TransformersWhisper
+from buzz.model_loader import ModelType, WhisperModelSize, map_language_to_mms
+from buzz.transformers_whisper import TransformersTranscriber
from buzz.transcriber.file_transcriber import FileTranscriber
-from buzz.transcriber.transcriber import FileTranscriptionTask, Segment
+from buzz.transcriber.transcriber import FileTranscriptionTask, Segment, Task, DEFAULT_WHISPER_TEMPERATURE
+from buzz.transcriber.whisper_cpp import WhisperCpp
+import av
import faster_whisper
import whisper
import stable_whisper
@@ -30,6 +37,22 @@ from stable_whisper import WhisperResult
PROGRESS_REGEX = re.compile(r"\d+(\.\d+)?%")
+def check_file_has_audio_stream(file_path: str) -> None:
+ """Check if a media file has at least one audio stream.
+
+ Raises:
+ ValueError: If the file has no audio streams.
+ """
+ try:
+ with av.open(file_path) as container:
+ if len(container.streams.audio) == 0:
+ raise ValueError("No audio streams found")
+ except av.error.InvalidDataError as e:
+ raise ValueError(f"Invalid media file: {e}")
+ except av.error.FileNotFoundError:
+ raise ValueError("File not found")
+
+
class WhisperFileTranscriber(FileTranscriber):
"""WhisperFileTranscriber transcribes an audio file to text, writes the text to a file, and then opens the file
using the default program for opening txt files."""
@@ -46,6 +69,9 @@ class WhisperFileTranscriber(FileTranscriber):
self.segments = []
self.started_process = False
self.stopped = False
+ self.recv_pipe = None
+ self.send_pipe = None
+ self.error_message = None
def transcribe(self) -> List[Segment]:
time_started = datetime.datetime.now()
@@ -56,24 +82,44 @@ class WhisperFileTranscriber(FileTranscriber):
if torch.cuda.is_available():
logging.debug(f"CUDA version detected: {torch.version.cuda}")
- recv_pipe, send_pipe = multiprocessing.Pipe(duplex=False)
+ self.recv_pipe, self.send_pipe = multiprocessing.Pipe(duplex=False)
self.current_process = multiprocessing.Process(
- target=self.transcribe_whisper, args=(send_pipe, self.transcription_task)
+ target=self.transcribe_whisper, args=(self.send_pipe, self.transcription_task)
)
if not self.stopped:
self.current_process.start()
self.started_process = True
- self.read_line_thread = Thread(target=self.read_line, args=(recv_pipe,))
+ self.read_line_thread = Thread(target=self.read_line, args=(self.recv_pipe,))
self.read_line_thread.start()
- self.current_process.join()
+ # Only join the process if it was actually started
+ if self.started_process:
+ self.current_process.join()
- if self.current_process.exitcode != 0:
- send_pipe.close()
+ # Close the send pipe after process ends to signal read_line thread to stop
+ # This prevents the read thread from blocking on recv() after the process is gone
+ try:
+ if self.send_pipe and not self.send_pipe.closed:
+ self.send_pipe.close()
+ except OSError:
+ pass
- self.read_line_thread.join()
+ # Close the receive pipe to unblock the read_line thread
+ try:
+ if self.recv_pipe and not self.recv_pipe.closed:
+ self.recv_pipe.close()
+ except OSError:
+ pass
+
+ # Join read_line_thread with timeout to prevent hanging
+ if self.read_line_thread and self.read_line_thread.is_alive():
+ self.read_line_thread.join(timeout=3)
+ if self.read_line_thread.is_alive():
+ logging.warning("Read line thread didn't terminate gracefully in transcribe()")
+
+ self.started_process = False
logging.debug(
"whisper process completed with code = %s, time taken = %s,"
@@ -84,7 +130,14 @@ class WhisperFileTranscriber(FileTranscriber):
)
if self.current_process.exitcode != 0:
- raise Exception("Unknown error")
+ # Check if the process was terminated (likely due to cancellation)
+ # Exit codes 124-128 are often used for termination signals
+ if self.current_process.exitcode in [124, 125, 126, 127, 128, 130, 137, 143]:
+ # Process was likely terminated, treat as cancellation
+ logging.debug("Whisper process was terminated (exit code: %s), treating as cancellation", self.current_process.exitcode)
+ raise Exception("Transcription was canceled")
+ else:
+ raise Exception(self.error_message or "Unknown error")
return self.segments
@@ -92,39 +145,97 @@ class WhisperFileTranscriber(FileTranscriber):
def transcribe_whisper(
cls, stderr_conn: Connection, task: FileTranscriptionTask
) -> None:
- with pipe_stderr(stderr_conn):
- if task.transcription_options.model.model_type == ModelType.HUGGING_FACE:
- sys.stderr.write("0%\n")
- segments = cls.transcribe_hugging_face(task)
- sys.stderr.write("100%\n")
- elif (
- task.transcription_options.model.model_type == ModelType.FASTER_WHISPER
- ):
- segments = cls.transcribe_faster_whisper(task)
- elif task.transcription_options.model.model_type == ModelType.WHISPER:
- segments = cls.transcribe_openai_whisper(task)
- else:
- raise Exception(
- f"Invalid model type: {task.transcription_options.model.model_type}"
- )
+ # Patch subprocess on Windows to prevent console window flash
+ # This is needed because multiprocessing spawns a new process without the main process patches
+ if sys.platform == "win32":
+ import subprocess
+ _original_run = subprocess.run
+ _original_popen = subprocess.Popen
- segments_json = json.dumps(segments, ensure_ascii=True, default=vars)
- sys.stderr.write(f"segments = {segments_json}\n")
- sys.stderr.write(WhisperFileTranscriber.READ_LINE_THREAD_STOP_TOKEN + "\n")
+ def _patched_run(*args, **kwargs):
+ if 'startupinfo' not in kwargs:
+ si = subprocess.STARTUPINFO()
+ si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
+ si.wShowWindow = subprocess.SW_HIDE
+ kwargs['startupinfo'] = si
+ if 'creationflags' not in kwargs:
+ kwargs['creationflags'] = subprocess.CREATE_NO_WINDOW
+ return _original_run(*args, **kwargs)
+
+ class _PatchedPopen(subprocess.Popen):
+ def __init__(self, *args, **kwargs):
+ if 'startupinfo' not in kwargs:
+ si = subprocess.STARTUPINFO()
+ si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
+ si.wShowWindow = subprocess.SW_HIDE
+ kwargs['startupinfo'] = si
+ if 'creationflags' not in kwargs:
+ kwargs['creationflags'] = subprocess.CREATE_NO_WINDOW
+ super().__init__(*args, **kwargs)
+
+ subprocess.run = _patched_run
+ subprocess.Popen = _PatchedPopen
+
+ try:
+ # Check if the file has audio streams before processing
+ check_file_has_audio_stream(task.file_path)
+
+ with pipe_stderr(stderr_conn):
+ if task.transcription_options.model.model_type == ModelType.WHISPER_CPP:
+ segments = cls.transcribe_whisper_cpp(task)
+ elif task.transcription_options.model.model_type == ModelType.HUGGING_FACE:
+ sys.stderr.write("0%\n")
+ segments = cls.transcribe_hugging_face(task)
+ sys.stderr.write("100%\n")
+ elif (
+ task.transcription_options.model.model_type == ModelType.FASTER_WHISPER
+ ):
+ segments = cls.transcribe_faster_whisper(task)
+ elif task.transcription_options.model.model_type == ModelType.WHISPER:
+ segments = cls.transcribe_openai_whisper(task)
+ else:
+ raise Exception(
+ f"Invalid model type: {task.transcription_options.model.model_type}"
+ )
+
+ segments_json = json.dumps(segments, ensure_ascii=True, default=vars)
+ sys.stderr.write(f"segments = {segments_json}\n")
+ sys.stderr.write(WhisperFileTranscriber.READ_LINE_THREAD_STOP_TOKEN + "\n")
+ except Exception as e:
+ # Send error message back to the parent process
+ stderr_conn.send(f"error = {str(e)}\n")
+ stderr_conn.send(WhisperFileTranscriber.READ_LINE_THREAD_STOP_TOKEN + "\n")
+ raise
+
+ @classmethod
+ def transcribe_whisper_cpp(cls, task: FileTranscriptionTask) -> List[Segment]:
+ return WhisperCpp.transcribe(task)
@classmethod
def transcribe_hugging_face(cls, task: FileTranscriptionTask) -> List[Segment]:
- model = TransformersWhisper(task.model_path)
- language = (
- task.transcription_options.language
- if task.transcription_options.language is not None
- else "en"
- )
+ model = TransformersTranscriber(task.model_path)
+
+ # Handle language - MMS uses ISO 639-3 codes, Whisper uses ISO 639-1
+ if model.is_mms_model:
+ language = map_language_to_mms(task.transcription_options.language or "eng")
+ # MMS only supports transcription, ignore translation task
+ effective_task = Task.TRANSCRIBE.value
+ # MMS doesn't support word-level timestamps
+ word_timestamps = False
+ else:
+ language = (
+ task.transcription_options.language
+ if task.transcription_options.language is not None
+ else "en"
+ )
+ effective_task = task.transcription_options.task.value
+ word_timestamps = task.transcription_options.word_level_timings
+
result = model.transcribe(
audio=task.file_path,
language=language,
- task=task.transcription_options.task.value,
- word_timestamps=task.transcription_options.word_level_timings,
+ task=effective_task,
+ word_timestamps=word_timestamps,
)
return [
Segment(
@@ -140,68 +251,97 @@ class WhisperFileTranscriber(FileTranscriber):
def transcribe_faster_whisper(cls, task: FileTranscriptionTask) -> List[Segment]:
if task.transcription_options.model.whisper_model_size == WhisperModelSize.CUSTOM:
model_size_or_path = task.transcription_options.model.hugging_face_model_id
- elif task.transcription_options.model.whisper_model_size == WhisperModelSize.LARGEV3TURBO:
- model_size_or_path = "deepdml/faster-whisper-large-v3-turbo-ct2"
else:
model_size_or_path = task.transcription_options.model.whisper_model_size.to_faster_whisper_model_size()
model_root_dir = user_cache_dir("Buzz")
model_root_dir = os.path.join(model_root_dir, "models")
model_root_dir = os.getenv("BUZZ_MODEL_ROOT", model_root_dir)
+ force_cpu = os.getenv("BUZZ_FORCE_CPU", "false")
device = "auto"
- if platform.system() == "Windows":
- logging.debug("CUDA GPUs are currently no supported on Running on Windows, using CPU")
- device = "cpu"
-
if torch.cuda.is_available() and torch.version.cuda < "12":
logging.debug("Unsupported CUDA version (<12), using CPU")
device = "cpu"
+ if not torch.cuda.is_available():
+ logging.debug("CUDA is not available, using CPU")
+ device = "cpu"
+
+ if force_cpu != "false":
+ device = "cpu"
+
+ # Check if user wants reduced GPU memory usage (int8 quantization)
+ reduce_gpu_memory = os.getenv("BUZZ_REDUCE_GPU_MEMORY", "false") != "false"
+ compute_type = "default"
+ if reduce_gpu_memory:
+ compute_type = "int8" if device == "cpu" else "int8_float16"
+ logging.debug(f"Using {compute_type} compute type for reduced memory usage")
+
model = faster_whisper.WhisperModel(
model_size_or_path=model_size_or_path,
download_root=model_root_dir,
device=device,
+ compute_type=compute_type,
+ cpu_threads=(os.cpu_count() or 8)//2,
)
- whisper_segments, info = model.transcribe(
+
+ batched_model = faster_whisper.BatchedInferencePipeline(model=model)
+ whisper_segments, info = batched_model.transcribe(
audio=task.file_path,
language=task.transcription_options.language,
task=task.transcription_options.task.value,
- temperature=task.transcription_options.temperature,
+ # Prevent crash on Windows https://github.com/SYSTRAN/faster-whisper/issues/71#issuecomment-1526263764
+ temperature = 0 if platform.system() == "Windows" else DEFAULT_WHISPER_TEMPERATURE,
initial_prompt=task.transcription_options.initial_prompt,
word_timestamps=task.transcription_options.word_level_timings,
+ no_speech_threshold=0.4,
+ log_progress=True,
)
segments = []
- with tqdm.tqdm(total=round(info.duration, 2), unit=" seconds") as pbar:
- for segment in list(whisper_segments):
- # Segment will contain words if word-level timings is True
- if segment.words:
- for word in segment.words:
- segments.append(
- Segment(
- start=int(word.start * 1000),
- end=int(word.end * 1000),
- text=word.word,
- translation=""
- )
- )
- else:
+ for segment in whisper_segments:
+ # Segment will contain words if word-level timings is True
+ if segment.words:
+ for word in segment.words:
segments.append(
Segment(
- start=int(segment.start * 1000),
- end=int(segment.end * 1000),
- text=segment.text,
+ start=int(word.start * 1000),
+ end=int(word.end * 1000),
+ text=word.word,
translation=""
)
)
+ else:
+ segments.append(
+ Segment(
+ start=int(segment.start * 1000),
+ end=int(segment.end * 1000),
+ text=segment.text,
+ translation=""
+ )
+ )
- pbar.update(segment.end - segment.start)
return segments
@classmethod
def transcribe_openai_whisper(cls, task: FileTranscriptionTask) -> List[Segment]:
- device = "cuda" if torch.cuda.is_available() else "cpu"
- model = whisper.load_model(task.model_path, device=device)
+ force_cpu = os.getenv("BUZZ_FORCE_CPU", "false")
+ use_cuda = torch.cuda.is_available() and force_cpu == "false"
+
+ device = "cuda" if use_cuda else "cpu"
+
+ # Monkeypatch torch.load to use weights_only=False for PyTorch 2.6+
+ # This is required for loading Whisper models with the newer PyTorch versions
+ original_torch_load = torch.load
+ def patched_torch_load(*args, **kwargs):
+ kwargs.setdefault('weights_only', False)
+ return original_torch_load(*args, **kwargs)
+
+ torch.load = patched_torch_load
+ try:
+ model = whisper.load_model(task.model_path, device=device)
+ finally:
+ torch.load = original_torch_load
if task.transcription_options.word_level_timings:
stable_whisper.modify_model(model)
@@ -209,8 +349,10 @@ class WhisperFileTranscriber(FileTranscriber):
audio=whisper_audio.load_audio(task.file_path),
language=task.transcription_options.language,
task=task.transcription_options.task.value,
- temperature=task.transcription_options.temperature,
+ temperature=DEFAULT_WHISPER_TEMPERATURE,
initial_prompt=task.transcription_options.initial_prompt,
+ no_speech_threshold=0.4,
+ fp16=False,
)
return [
Segment(
@@ -230,6 +372,7 @@ class WhisperFileTranscriber(FileTranscriber):
temperature=task.transcription_options.temperature,
initial_prompt=task.transcription_options.initial_prompt,
verbose=False,
+ fp16=False,
)
segments = result.get("segments")
return [
@@ -244,14 +387,46 @@ class WhisperFileTranscriber(FileTranscriber):
def stop(self):
self.stopped = True
+
if self.started_process:
self.current_process.terminate()
+ if self.read_line_thread and self.read_line_thread.is_alive():
+ self.read_line_thread.join(timeout=5)
+ if self.read_line_thread.is_alive():
+ logging.warning("Read line thread still alive after 5s")
+
+ self.current_process.join(timeout=10)
+ if self.current_process.is_alive():
+ logging.warning("Process didn't terminate gracefully, force killing")
+ self.current_process.kill()
+ self.current_process.join(timeout=5)
+
+ try:
+ if hasattr(self, 'send_pipe') and self.send_pipe:
+ self.send_pipe.close()
+ except Exception as e:
+ logging.debug(f"Error closing send_pipe: {e}")
+
+ try:
+ if hasattr(self, 'recv_pipe') and self.recv_pipe:
+ self.recv_pipe.close()
+ except Exception as e:
+ logging.debug(f"Error closing recv_pipe: {e}")
+
def read_line(self, pipe: Connection):
while True:
try:
line = pipe.recv().strip()
- except EOFError: # Connection closed
+
+ # Uncomment to debug
+ # print(f"*** DEBUG ***: {line}")
+
+ except (EOFError, BrokenPipeError, ConnectionResetError, OSError):
+ # Connection closed, broken, or process crashed (Windows RPC errors raise OSError)
+ break
+ except Exception as e:
+ logging.debug(f"Error reading from pipe: {e}")
break
if line == self.READ_LINE_THREAD_STOP_TOKEN:
@@ -269,6 +444,8 @@ class WhisperFileTranscriber(FileTranscriber):
for segment in segments_dict
]
self.segments = segments
+ elif line.startswith("error = "):
+ self.error_message = line[8:]
else:
try:
match = PROGRESS_REGEX.search(line)
diff --git a/buzz/transformers_whisper.py b/buzz/transformers_whisper.py
index e6398390..d9995d5a 100644
--- a/buzz/transformers_whisper.py
+++ b/buzz/transformers_whisper.py
@@ -1,14 +1,32 @@
import os
import sys
+import logging
+import platform
import numpy as np
+
+# Preload CUDA libraries before importing torch
+from buzz import cuda_setup # noqa: F401
+
import torch
import requests
-from typing import Optional, Union
-from transformers import AutoModelForSpeechSeq2Seq, AutoProcessor, pipeline
+from typing import Union
+from transformers import AutoModelForSpeechSeq2Seq, AutoProcessor, pipeline, BitsAndBytesConfig
from transformers.pipelines import AutomaticSpeechRecognitionPipeline
from transformers.pipelines.audio_utils import ffmpeg_read
from transformers.pipelines.automatic_speech_recognition import is_torchaudio_available
+from buzz.model_loader import is_mms_model, map_language_to_mms
+
+
+def is_intel_mac() -> bool:
+ """Check if running on Intel Mac (x86_64)."""
+ return sys.platform == 'darwin' and platform.machine() == 'x86_64'
+
+
+def is_peft_model(model_id: str) -> bool:
+ """Check if model is a PEFT model based on model ID containing '-peft'."""
+ return "-peft" in model_id.lower()
+
class PipelineWithProgress(AutomaticSpeechRecognitionPipeline): # pragma: no cover
# Copy of transformers `AutomaticSpeechRecognitionPipeline.chunk_iter` method with custom progress output
@@ -17,7 +35,8 @@ class PipelineWithProgress(AutomaticSpeechRecognitionPipeline): # pragma: no co
inputs_len = inputs.shape[0]
step = chunk_len - stride_left - stride_right
for chunk_start_idx in range(0, inputs_len, step):
- # Print progress to stderr
+
+ # Buzz will print progress to stderr
progress = int((chunk_start_idx / inputs_len) * 100)
sys.stderr.write(f"{progress}%\n")
@@ -27,8 +46,7 @@ class PipelineWithProgress(AutomaticSpeechRecognitionPipeline): # pragma: no co
if dtype is not None:
processed = processed.to(dtype=dtype)
_stride_left = 0 if chunk_start_idx == 0 else stride_left
- # all right strides must be full, otherwise it is the last item
- is_last = chunk_end_idx > inputs_len if stride_right > 0 else chunk_end_idx >= inputs_len
+ is_last = chunk_end_idx >= inputs_len
_stride_right = 0 if is_last else stride_right
chunk_len = chunk.shape[0]
@@ -98,7 +116,7 @@ class PipelineWithProgress(AutomaticSpeechRecognitionPipeline): # pragma: no co
# of the original length in the stride so we can cut properly.
stride = (inputs.shape[0], int(round(stride[0] * ratio)), int(round(stride[1] * ratio)))
if not isinstance(inputs, np.ndarray):
- raise ValueError(f"We expect a numpy ndarray as input, got `{type(inputs)}`")
+ raise TypeError(f"We expect a numpy ndarray as input, got `{type(inputs)}`")
if len(inputs.shape) != 1:
raise ValueError("We expect a single channel audio input for AutomaticSpeechRecognitionPipeline")
@@ -109,7 +127,7 @@ class PipelineWithProgress(AutomaticSpeechRecognitionPipeline): # pragma: no co
if isinstance(stride_length_s, (int, float)):
stride_length_s = [stride_length_s, stride_length_s]
- # XXX: Carefuly, this variable will not exist in `seq2seq` setting.
+ # XXX: Carefully, this variable will not exist in `seq2seq` setting.
# Currently chunking is not possible at this level for `seq2seq` so
# it's ok.
align_to = getattr(self.model.config, "inputs_to_logits_ratio", 1)
@@ -120,11 +138,11 @@ class PipelineWithProgress(AutomaticSpeechRecognitionPipeline): # pragma: no co
if chunk_len < stride_left + stride_right:
raise ValueError("Chunk length must be superior to stride length")
- # Will use our custom chunk_iter with progress
+ # Buzz use our custom chunk_iter with progress
for item in self.chunk_iter(
inputs, self.feature_extractor, chunk_len, stride_left, stride_right, self.torch_dtype
):
- yield item
+ yield {**item, **extra}
else:
if self.type == "seq2seq_whisper" and inputs.shape[0] > self.feature_extractor.n_samples:
processed = self.feature_extractor(
@@ -133,12 +151,25 @@ class PipelineWithProgress(AutomaticSpeechRecognitionPipeline): # pragma: no co
truncation=False,
padding="longest",
return_tensors="pt",
+ return_attention_mask=True,
)
else:
- processed = self.feature_extractor(
- inputs, sampling_rate=self.feature_extractor.sampling_rate, return_tensors="pt"
- )
-
+ if self.type == "seq2seq_whisper" and stride is None:
+ processed = self.feature_extractor(
+ inputs,
+ sampling_rate=self.feature_extractor.sampling_rate,
+ return_tensors="pt",
+ return_token_timestamps=True,
+ return_attention_mask=True,
+ )
+ extra["num_frames"] = processed.pop("num_frames")
+ else:
+ processed = self.feature_extractor(
+ inputs,
+ sampling_rate=self.feature_extractor.sampling_rate,
+ return_tensors="pt",
+ return_attention_mask=True,
+ )
if self.torch_dtype is not None:
processed = processed.to(dtype=self.torch_dtype)
if stride is not None:
@@ -149,11 +180,23 @@ class PipelineWithProgress(AutomaticSpeechRecognitionPipeline): # pragma: no co
yield {"is_last": True, **processed, **extra}
-class TransformersWhisper:
- def __init__(
- self, model_id: str
- ):
+class TransformersTranscriber:
+ """Unified transcriber for HuggingFace models (Whisper and MMS)."""
+
+ def __init__(self, model_id: str):
self.model_id = model_id
+ self._is_mms = is_mms_model(model_id)
+ self._is_peft = is_peft_model(model_id)
+
+ @property
+ def is_mms_model(self) -> bool:
+ """Returns True if this is an MMS model."""
+ return self._is_mms
+
+ @property
+ def is_peft_model(self) -> bool:
+ """Returns True if this is a PEFT model."""
+ return self._is_peft
def transcribe(
self,
@@ -162,50 +205,316 @@ class TransformersWhisper:
task: str,
word_timestamps: bool = False,
):
- device = "cuda" if torch.cuda.is_available() else "cpu"
- torch_dtype = torch.float16 if torch.cuda.is_available() else torch.float32
+ """Transcribe audio using either Whisper or MMS model."""
+ if self._is_mms:
+ return self._transcribe_mms(audio, language)
+ else:
+ return self._transcribe_whisper(audio, language, task, word_timestamps)
- use_safetensors = True
- if os.path.exists(self.model_id):
- safetensors_files = [f for f in os.listdir(self.model_id) if f.endswith(".safetensors")]
- use_safetensors = len(safetensors_files) > 0
+ def _transcribe_whisper(
+ self,
+ audio: Union[str, np.ndarray],
+ language: str,
+ task: str,
+ word_timestamps: bool = False,
+ ):
+ """Transcribe using Whisper model."""
+ force_cpu = os.getenv("BUZZ_FORCE_CPU", "false")
+ use_cuda = torch.cuda.is_available() and force_cpu == "false"
+ device = "cuda" if use_cuda else "cpu"
+ torch_dtype = torch.float16 if use_cuda else torch.float32
- model = AutoModelForSpeechSeq2Seq.from_pretrained(
- self.model_id, torch_dtype=torch_dtype, low_cpu_mem_usage=True, use_safetensors=use_safetensors
+ # Check if this is a PEFT model
+ if is_peft_model(self.model_id):
+ model, processor, use_8bit = self._load_peft_model(device, torch_dtype)
+ else:
+ use_safetensors = True
+ if os.path.isdir(self.model_id):
+ safetensors_files = [f for f in os.listdir(self.model_id) if f.endswith(".safetensors")]
+ use_safetensors = len(safetensors_files) > 0
+
+ # Check if user wants reduced GPU memory usage (8-bit quantization)
+ # Skip on Intel Macs as bitsandbytes is not available there
+ reduce_gpu_memory = os.getenv("BUZZ_REDUCE_GPU_MEMORY", "false") != "false"
+ use_8bit = False
+ if device == "cuda" and reduce_gpu_memory and not is_intel_mac():
+ try:
+ import bitsandbytes # noqa: F401
+ use_8bit = True
+ print("Using 8-bit quantization for reduced GPU memory usage")
+ except ImportError:
+ print("bitsandbytes not available, using standard precision")
+
+ if use_8bit:
+ quantization_config = BitsAndBytesConfig(load_in_8bit=True)
+ model = AutoModelForSpeechSeq2Seq.from_pretrained(
+ self.model_id,
+ quantization_config=quantization_config,
+ device_map="auto",
+ use_safetensors=use_safetensors
+ )
+ else:
+ model = AutoModelForSpeechSeq2Seq.from_pretrained(
+ self.model_id, torch_dtype=torch_dtype, low_cpu_mem_usage=True, use_safetensors=use_safetensors
+ )
+ model.to(device)
+
+ model.generation_config.language = language
+
+ processor = AutoProcessor.from_pretrained(self.model_id)
+
+ pipeline_kwargs = {
+ "task": "automatic-speech-recognition",
+ "pipeline_class": PipelineWithProgress,
+ "generate_kwargs": {
+ "language": language,
+ "task": task,
+ "no_repeat_ngram_size": 3,
+ "repetition_penalty": 1.2,
+ },
+ "model": model,
+ "tokenizer": processor.tokenizer,
+ "feature_extractor": processor.feature_extractor,
+ # pipeline has built in chunking, works faster, but we loose progress output
+ # needed for word level timestamps, otherwise there is huge RAM usage on longer audios
+ "chunk_length_s": 30 if word_timestamps else None,
+ "torch_dtype": torch_dtype,
+ "ignore_warning": True, # Ignore warning about chunk_length_s being experimental for seq2seq models
+ }
+ if not use_8bit:
+ pipeline_kwargs["device"] = device
+ pipe = pipeline(**pipeline_kwargs)
+
+ transcript = pipe(
+ audio,
+ return_timestamps="word" if word_timestamps else True,
)
- model.generation_config.language = language
- model.to(device)
-
- processor = AutoProcessor.from_pretrained(self.model_id)
-
- pipe = pipeline(
- "automatic-speech-recognition",
- pipeline_class=PipelineWithProgress,
- generate_kwargs={"language": language, "task": task},
- model=model,
- tokenizer=processor.tokenizer,
- feature_extractor=processor.feature_extractor,
- chunk_length_s=30,
- torch_dtype=torch_dtype,
- device=device,
- )
-
- transcript = pipe(audio, return_timestamps="word" if word_timestamps else True)
-
segments = []
for chunk in transcript['chunks']:
start, end = chunk['timestamp']
text = chunk['text']
- segments.append({
- "start": 0 if start is None else start,
- "end": 0 if end is None else end,
- "text": text,
- "translation": ""
- })
+
+ # Last segment may not have an end timestamp
+ if start is None:
+ start = 0
+ if end is None:
+ end = start + 0.1
+
+ if end > start and text.strip() != "":
+ segments.append({
+ "start": 0 if start is None else start,
+ "end": 0 if end is None else end,
+ "text": text.strip(),
+ "translation": ""
+ })
return {
"text": transcript['text'],
"segments": segments,
}
+ def _load_peft_model(self, device: str, torch_dtype):
+ """Load a PEFT (Parameter-Efficient Fine-Tuning) model.
+
+ PEFT models require loading the base model first, then applying the adapter.
+ The base model path is extracted from the PEFT config.
+
+ Returns:
+ Tuple of (model, processor, use_8bit)
+ """
+ from peft import PeftModel, PeftConfig
+ from transformers import WhisperForConditionalGeneration, WhisperFeatureExtractor, WhisperTokenizer
+
+ print(f"Loading PEFT model: {self.model_id}")
+
+ # Get the PEFT model ID (handle both local paths and repo IDs)
+ peft_model_id = self._get_peft_repo_id()
+
+ # Load PEFT config to get base model path
+ peft_config = PeftConfig.from_pretrained(peft_model_id)
+ base_model_path = peft_config.base_model_name_or_path
+ print(f"PEFT base model: {base_model_path}")
+
+ # Load the base Whisper model
+ # Use 8-bit quantization on CUDA if user enabled "Reduce GPU RAM" and bitsandbytes is available
+ # Skip on Intel Macs as bitsandbytes is not available there
+ reduce_gpu_memory = os.getenv("BUZZ_REDUCE_GPU_MEMORY", "false") != "false"
+ use_8bit = False
+ if device == "cuda" and reduce_gpu_memory and not is_intel_mac():
+ try:
+ import bitsandbytes # noqa: F401
+ use_8bit = True
+ print("Using 8-bit quantization for reduced GPU memory usage")
+ except ImportError:
+ print("bitsandbytes not available, using standard precision for PEFT model")
+
+ if use_8bit:
+ quantization_config = BitsAndBytesConfig(load_in_8bit=True)
+ model = WhisperForConditionalGeneration.from_pretrained(
+ base_model_path,
+ quantization_config=quantization_config,
+ device_map="auto"
+ )
+ else:
+ model = WhisperForConditionalGeneration.from_pretrained(
+ base_model_path,
+ torch_dtype=torch_dtype,
+ low_cpu_mem_usage=True
+ )
+ model.to(device)
+
+ # Apply the PEFT adapter
+ model = PeftModel.from_pretrained(model, peft_model_id)
+ model.config.use_cache = True
+
+ # Load feature extractor and tokenizer from base model
+ feature_extractor = WhisperFeatureExtractor.from_pretrained(base_model_path)
+ tokenizer = WhisperTokenizer.from_pretrained(base_model_path, task="transcribe")
+
+ # Create a simple processor-like object that the pipeline expects
+ class PeftProcessor:
+ def __init__(self, feature_extractor, tokenizer):
+ self.feature_extractor = feature_extractor
+ self.tokenizer = tokenizer
+
+ processor = PeftProcessor(feature_extractor, tokenizer)
+
+ return model, processor, use_8bit
+
+ def _get_peft_repo_id(self) -> str:
+ """Extract HuggingFace repo ID from local cache path for PEFT models."""
+ model_id = self.model_id
+
+ # If it's already a repo ID (contains / but not a file path), return as-is
+ if "/" in model_id and not os.path.exists(model_id):
+ return model_id
+
+ # Extract repo ID from cache path
+ if "models--" in model_id:
+ parts = model_id.split("models--")
+ if len(parts) > 1:
+ repo_part = parts[1].split(os.sep + "snapshots")[0]
+ repo_id = repo_part.replace("--", "/", 1)
+ return repo_id
+
+ # Fallback: return as-is
+ return model_id
+
+ def _get_mms_repo_id(self) -> str:
+ """Extract HuggingFace repo ID from local cache path or return as-is if already a repo ID."""
+ model_id = self.model_id
+
+ # If it's already a repo ID (contains / but not a file path), return as-is
+ if "/" in model_id and not os.path.exists(model_id):
+ return model_id
+
+ # Extract repo ID from cache path like:
+ # Linux: /home/user/.cache/Buzz/models/models--facebook--mms-1b-all/snapshots/xxx
+ # Windows: C:\Users\user\.cache\Buzz\models\models--facebook--mms-1b-all\snapshots\xxx
+ if "models--" in model_id:
+ # Extract the part after "models--" and before "/snapshots" or "\snapshots"
+ parts = model_id.split("models--")
+ if len(parts) > 1:
+ # Split on os.sep to handle both Windows and Unix paths
+ repo_part = parts[1].split(os.sep + "snapshots")[0]
+ # Convert facebook--mms-1b-all to facebook/mms-1b-all
+ repo_id = repo_part.replace("--", "/", 1)
+ return repo_id
+
+ # Fallback: return as-is
+ return model_id
+
+ def _transcribe_mms(
+ self,
+ audio: Union[str, np.ndarray],
+ language: str,
+ ):
+ """Transcribe using MMS (Massively Multilingual Speech) model."""
+ from transformers import Wav2Vec2ForCTC, AutoProcessor as MMSAutoProcessor
+ from transformers.pipelines.audio_utils import ffmpeg_read as mms_ffmpeg_read
+
+ force_cpu = os.getenv("BUZZ_FORCE_CPU", "false")
+ use_cuda = torch.cuda.is_available() and force_cpu == "false"
+ device = "cuda" if use_cuda else "cpu"
+
+ # Map language code to ISO 639-3 for MMS
+ mms_language = map_language_to_mms(language)
+ print(f"MMS transcription with language: {mms_language} (original: {language})")
+
+ sys.stderr.write("0%\n")
+
+ # Use repo ID for MMS to allow adapter downloads
+ # Local paths don't work for adapter downloads
+ repo_id = self._get_mms_repo_id()
+ print(f"MMS using repo ID: {repo_id} (from model_id: {self.model_id})")
+
+ # Load processor and model with target language
+ # This will download the language adapter if not cached
+ processor = MMSAutoProcessor.from_pretrained(
+ repo_id,
+ target_lang=mms_language
+ )
+
+ model = Wav2Vec2ForCTC.from_pretrained(
+ repo_id,
+ target_lang=mms_language,
+ ignore_mismatched_sizes=True
+ )
+ model.to(device)
+
+ sys.stderr.write("25%\n")
+
+ # Load and process audio
+ if isinstance(audio, str):
+ with open(audio, "rb") as f:
+ audio_data = f.read()
+ audio_array = mms_ffmpeg_read(audio_data, processor.feature_extractor.sampling_rate)
+ else:
+ audio_array = audio
+
+ # Ensure audio is the right sample rate
+ sampling_rate = processor.feature_extractor.sampling_rate
+
+ sys.stderr.write("50%\n")
+
+ # Process audio in chunks for progress reporting
+ inputs = processor(
+ audio_array,
+ sampling_rate=sampling_rate,
+ return_tensors="pt",
+ padding=True
+ )
+ inputs = {k: v.to(device) for k, v in inputs.items()}
+
+ sys.stderr.write("75%\n")
+
+ # Run inference
+ with torch.no_grad():
+ outputs = model(**inputs).logits
+
+ # Decode
+ ids = torch.argmax(outputs, dim=-1)[0]
+ transcription = processor.decode(ids)
+
+ sys.stderr.write("100%\n")
+
+ # Calculate approximate duration for segment
+ duration = len(audio_array) / sampling_rate if isinstance(audio_array, np.ndarray) else 0
+
+ # Return in same format as Whisper for consistency
+ # MMS doesn't provide word-level timestamps, so we return a single segment
+ return {
+ "text": transcription,
+ "segments": [{
+ "start": 0,
+ "end": duration,
+ "text": transcription.strip(),
+ "translation": ""
+ }] if transcription.strip() else []
+ }
+
+
+# Alias for backward compatibility
+TransformersWhisper = TransformersTranscriber
+
diff --git a/buzz/translator.py b/buzz/translator.py
index 9fa020f7..dfb0b948 100644
--- a/buzz/translator.py
+++ b/buzz/translator.py
@@ -1,21 +1,25 @@
import os
+import re
import logging
import queue
-from typing import Optional
-from openai import OpenAI
+from typing import Optional, List, Tuple
+from openai import OpenAI, max_retries
from PyQt6.QtCore import QObject, pyqtSignal
+from buzz.locale import _
from buzz.settings.settings import Settings
from buzz.store.keyring_store import get_password, Key
from buzz.transcriber.transcriber import TranscriptionOptions
from buzz.widgets.transcriber.advanced_settings_dialog import AdvancedSettingsDialog
+BATCH_SIZE = 10
+
+
class Translator(QObject):
translation = pyqtSignal(str, int)
finished = pyqtSignal()
- is_running = False
def __init__(
self,
@@ -48,38 +52,137 @@ class Translator(QObject):
)
self.openai_client = OpenAI(
api_key=openai_api_key,
- base_url=custom_openai_base_url if custom_openai_base_url else None
+ base_url=custom_openai_base_url if custom_openai_base_url else None,
+ max_retries=0
)
- def start(self):
- logging.debug("Starting translation queue")
-
- self.is_running = True
-
- while self.is_running:
- try:
- transcript, transcript_id = self.queue.get(timeout=1)
- except queue.Empty:
- continue
-
+ def _translate_single(self, transcript: str, transcript_id: int) -> Tuple[str, int]:
+ """Translate a single transcript via the API. Returns (translation, transcript_id)."""
+ try:
completion = self.openai_client.chat.completions.create(
model=self.transcription_options.llm_model,
messages=[
{"role": "system", "content": self.transcription_options.llm_prompt},
{"role": "user", "content": transcript}
- ]
+ ],
+ timeout=60.0,
)
+ except Exception as e:
+ completion = None
+ logging.error(f"Translation error! Server response: {e}")
+ if completion and completion.choices and completion.choices[0].message:
logging.debug(f"Received translation response: {completion}")
+ return completion.choices[0].message.content, transcript_id
+ else:
+ logging.error(f"Translation error! Server response: {completion}")
+ # Translation error
+ return "", transcript_id
- if completion.choices and completion.choices[0].message:
- next_translation = completion.choices[0].message.content
+ def _translate_batch(self, items: List[Tuple[str, int]]) -> List[Tuple[str, int]]:
+ """Translate multiple transcripts in a single API call.
+ Returns list of (translation, transcript_id) in the same order as input."""
+ numbered_parts = []
+ for i, (transcript, _) in enumerate(items, 1):
+ numbered_parts.append(f"[{i}] {transcript}")
+ combined = "\n".join(numbered_parts)
+
+ batch_prompt = (
+ f"{self.transcription_options.llm_prompt}\n\n"
+ f"You will receive {len(items)} numbered texts. "
+ f"Process each one separately according to the instruction above "
+ f"and return them in the exact same numbered format, e.g.:\n"
+ f"[1] processed text\n[2] processed text"
+ )
+
+ try:
+ completion = self.openai_client.chat.completions.create(
+ model=self.transcription_options.llm_model,
+ messages=[
+ {"role": "system", "content": batch_prompt},
+ {"role": "user", "content": combined}
+ ],
+ timeout=60.0,
+ )
+ except Exception as e:
+ completion = None
+ logging.error(f"Batch translation error! Server response: {e}")
+
+ if not (completion and completion.choices and completion.choices[0].message):
+ logging.error(f"Batch translation error! Server response: {completion}")
+ # Translation error
+ return [("", tid) for _, tid in items]
+
+ response_text = completion.choices[0].message.content
+ logging.debug(f"Received batch translation response: {response_text}")
+
+ translations = self._parse_batch_response(response_text, len(items))
+
+ results = []
+ for i, (_, transcript_id) in enumerate(items):
+ if i < len(translations):
+ results.append((translations[i], transcript_id))
else:
- logging.error(f"Translation error! Server response: {completion}")
- next_translation = "Translation error, see logs!"
+ # Translation error
+ results.append(("", transcript_id))
+ return results
- self.translation.emit(next_translation, transcript_id)
+ @staticmethod
+ def _parse_batch_response(response: str, expected_count: int) -> List[str]:
+ """Parse a numbered batch response like '[1] text\\n[2] text' into a list of strings."""
+ # Split on [N] markers — re.split with a group returns: [before, group1, after1, group2, after2, ...]
+ parts = re.split(r'\[(\d+)\]\s*', response)
+ translations = {}
+ for i in range(1, len(parts) - 1, 2):
+ num = int(parts[i])
+ text = parts[i + 1].strip()
+ translations[num] = text
+
+ return [
+ translations.get(i, "")
+ for i in range(1, expected_count + 1)
+ ]
+
+ def start(self):
+ logging.debug("Starting translation queue")
+
+ while True:
+ item = self.queue.get() # Block until item available
+
+ # Check for sentinel value (None means stop)
+ if item is None:
+ logging.debug("Translation queue received stop signal")
+ break
+
+ # Collect a batch: start with the first item, then drain more
+ batch = [item]
+ stop_after_batch = False
+ while len(batch) < BATCH_SIZE:
+ try:
+ next_item = self.queue.get_nowait()
+ if next_item is None:
+ stop_after_batch = True
+ break
+ batch.append(next_item)
+ except queue.Empty:
+ break
+
+ if len(batch) == 1:
+ transcript, transcript_id = batch[0]
+ translation, tid = self._translate_single(transcript, transcript_id)
+ self.translation.emit(translation, tid)
+ else:
+ logging.debug(f"Translating batch of {len(batch)} in single request")
+ results = self._translate_batch(batch)
+ for translation, tid in results:
+ self.translation.emit(translation, tid)
+
+ if stop_after_batch:
+ logging.debug("Translation queue received stop signal")
+ break
+
+ logging.debug("Translation queue stopped")
self.finished.emit()
def on_transcription_options_changed(
@@ -91,4 +194,5 @@ class Translator(QObject):
self.queue.put((transcript, transcript_id))
def stop(self):
- self.is_running = False
+ # Send sentinel value to unblock and stop the worker thread
+ self.queue.put(None)
diff --git a/buzz/update_checker.py b/buzz/update_checker.py
new file mode 100644
index 00000000..ff052af4
--- /dev/null
+++ b/buzz/update_checker.py
@@ -0,0 +1,163 @@
+import json
+import logging
+import platform
+from datetime import datetime
+from typing import Optional
+from dataclasses import dataclass
+
+from PyQt6.QtCore import QObject, pyqtSignal, QUrl
+from PyQt6.QtNetwork import QNetworkAccessManager, QNetworkRequest, QNetworkReply
+from buzz.__version__ import VERSION
+from buzz.settings.settings import Settings
+
+
+@dataclass
+class UpdateInfo:
+ version: str
+ release_notes: str
+ download_urls: list
+
+class UpdateChecker(QObject):
+ update_available = pyqtSignal(object)
+
+ VERSION_JSON_URL = "https://github.com/chidiwilliams/buzz/releases/latest/download/version_info.json"
+
+ CHECK_INTERVAL_DAYS = 7
+
+ def __init__(
+ self,
+ settings: Settings,
+ network_manager: Optional[QNetworkAccessManager] = None,
+ parent: Optional[QObject] = None
+ ):
+ super().__init__(parent)
+
+ self.settings = settings
+
+ if network_manager is None:
+ network_manager = QNetworkAccessManager(self)
+ self.network_manager = network_manager
+ self.network_manager.finished.connect(self._on_reply_finished)
+
+ def should_check_for_updates(self) -> bool:
+ """Check if we are on Windows/macOS and if 7 days passed"""
+ system = platform.system()
+ if system not in ("Windows", "Darwin"):
+ logging.debug("Skipping update check on linux")
+ return False
+
+ last_check = self.settings.value(
+ Settings.Key.LAST_UPDATE_CHECK,
+ "",
+ )
+
+ if last_check:
+ try:
+ last_check_date = datetime.fromisoformat(last_check)
+ days_since_check = (datetime.now() - last_check_date).days
+ if days_since_check < self.CHECK_INTERVAL_DAYS:
+ logging.debug(
+ f"Skipping update check, last checked {days_since_check} days ago"
+ )
+ return False
+ except ValueError:
+ #Invalid date format
+ pass
+
+ return True
+
+ def check_for_updates(self) -> None:
+ """Start the network request"""
+ if not self.should_check_for_updates():
+ return
+
+ logging.info("Checking for updates...")
+
+ url = QUrl(self.VERSION_JSON_URL)
+ request = QNetworkRequest(url)
+ self.network_manager.get(request)
+
+ def _on_reply_finished(self, reply: QNetworkReply) -> None:
+ """Handles the network reply for version.json fetch"""
+ self.settings.set_value(
+ Settings.Key.LAST_UPDATE_CHECK,
+ datetime.now().isoformat()
+ )
+
+ if reply.error() != QNetworkReply.NetworkError.NoError:
+ error_msg = f"Failed to check for updates: {reply.errorString()}"
+ logging.error(error_msg)
+ reply.deleteLater()
+ return
+
+ try:
+ data = json.loads(reply.readAll().data().decode("utf-8"))
+ reply.deleteLater()
+
+ remote_version = data.get("version", "")
+ release_notes = data.get("release_notes", "")
+ download_urls = data.get("download_urls", {})
+
+ #Get the download url for current platform
+ download_url = self._get_download_url(download_urls)
+
+ if self._is_newer_version(remote_version):
+ logging.info(f"Update available: {remote_version}")
+
+ #Store the available version
+ self.settings.set_value(
+ Settings.Key.UPDATE_AVAILABLE_VERSION,
+ remote_version
+ )
+
+ update_info = UpdateInfo(
+ version=remote_version,
+ release_notes=release_notes,
+ download_urls=download_url
+ )
+ self.update_available.emit(update_info)
+
+ else:
+ logging.info("No update available")
+ self.settings.set_value(
+ Settings.Key.UPDATE_AVAILABLE_VERSION,
+ ""
+ )
+
+ except (json.JSONDecodeError, KeyError) as e:
+ error_msg = f"Failed to parse version info: {e}"
+ logging.error(error_msg)
+
+ def _get_download_url(self, download_urls: dict) -> list:
+ system = platform.system()
+ machine = platform.machine().lower()
+
+ if system == "Windows":
+ urls = download_urls.get("windows_x64", [])
+ elif system == "Darwin":
+ if machine in ("arm64", "aarch64"):
+ urls = download_urls.get("macos_arm", [])
+ else:
+ urls = download_urls.get("macos_x86", [])
+ else:
+ urls = []
+
+ return urls if isinstance(urls, list) else [urls]
+
+ def _is_newer_version(self, remote_version: str) -> bool:
+ """Compare remote version with current version"""
+ try:
+ current_parts = [int(x) for x in VERSION.split(".")]
+ remote_parts = [int(x) for x in remote_version.split(".")]
+
+ #pad with zeros if needed
+ while len(current_parts) < len(remote_parts):
+ current_parts.append(0)
+ while len(remote_parts) < len(current_parts):
+ remote_parts.append(0)
+
+ return remote_parts > current_parts
+
+ except ValueError:
+ logging.error(f"Invalid version format: {VERSION} or {remote_version}")
+ return False
\ No newline at end of file
diff --git a/buzz/whisper_audio.py b/buzz/whisper_audio.py
index 7e871adf..ce3850b7 100644
--- a/buzz/whisper_audio.py
+++ b/buzz/whisper_audio.py
@@ -1,8 +1,11 @@
-from subprocess import run
-
+import subprocess
import numpy as np
+import sys
+import os
import logging
+from buzz.assets import APP_BASE_DIR
+
SAMPLE_RATE = 16000
N_FFT = 400
@@ -10,6 +13,8 @@ HOP_LENGTH = 160
CHUNK_LENGTH = 30
N_SAMPLES = CHUNK_LENGTH * SAMPLE_RATE # 480000 samples in a 30-second chunk
+app_env = os.environ.copy()
+app_env['PATH'] = os.pathsep.join([os.path.join(APP_BASE_DIR, "_internal")] + [app_env['PATH']])
def load_audio(file: str, sr: int = SAMPLE_RATE):
"""
@@ -44,7 +49,19 @@ def load_audio(file: str, sr: int = SAMPLE_RATE):
"-"
]
# fmt: on
- result = run(cmd, capture_output=True)
+ if sys.platform == "win32":
+ si = subprocess.STARTUPINFO()
+ si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
+ si.wShowWindow = subprocess.SW_HIDE
+ result = subprocess.run(
+ cmd,
+ capture_output=True,
+ startupinfo=si,
+ env=app_env,
+ creationflags=subprocess.CREATE_NO_WINDOW
+ )
+ else:
+ result = subprocess.run(cmd, capture_output=True)
if result.returncode != 0:
logging.warning(f"FFMPEG audio load warning. Process return code was not zero: {result.returncode}")
diff --git a/buzz/widgets/about_dialog.py b/buzz/widgets/about_dialog.py
index d4b3abbb..5c6b6757 100644
--- a/buzz/widgets/about_dialog.py
+++ b/buzz/widgets/about_dialog.py
@@ -1,5 +1,6 @@
import json
from typing import Optional
+from platformdirs import user_log_dir
from PyQt6 import QtGui
from PyQt6.QtCore import Qt, QUrl
@@ -80,6 +81,9 @@ class AboutDialog(QDialog):
self.check_updates_button = QPushButton(_("Check for updates"), self)
self.check_updates_button.clicked.connect(self.on_click_check_for_updates)
+ self.show_logs_button = QPushButton(_("Show logs"), self)
+ self.show_logs_button.clicked.connect(self.on_click_show_logs)
+
button_box = QDialogButtonBox(
QDialogButtonBox.StandardButton(QDialogButtonBox.StandardButton.Close), self
)
@@ -90,15 +94,21 @@ class AboutDialog(QDialog):
layout.addWidget(buzz_label)
layout.addWidget(version_label)
layout.addWidget(self.check_updates_button)
+ layout.addWidget(self.show_logs_button)
layout.addWidget(button_box)
self.setLayout(layout)
+ self.setMinimumWidth(350)
def on_click_check_for_updates(self):
url = QUrl(self.GITHUB_API_LATEST_RELEASE_URL)
self.network_access_manager.get(QNetworkRequest(url))
self.check_updates_button.setDisabled(True)
+ def on_click_show_logs(self):
+ log_dir = user_log_dir(appname="Buzz")
+ QDesktopServices.openUrl(QUrl.fromLocalFile(log_dir))
+
def on_latest_release_reply(self, reply: QNetworkReply):
if reply.error() == QNetworkReply.NetworkError.NoError:
response = json.loads(reply.readAll().data())
diff --git a/buzz/widgets/application.py b/buzz/widgets/application.py
index 478cf26a..8fad584b 100755
--- a/buzz/widgets/application.py
+++ b/buzz/widgets/application.py
@@ -1,9 +1,15 @@
+import logging
+import os
import sys
+import locale
+import platform
import darkdetect
+from posthog import Posthog
+
+from PyQt6.QtCore import Qt
from PyQt6.QtGui import QFont
-from PyQt6.QtWidgets import QApplication
-from PyQt6.QtGui import QPalette, QColor
+from PyQt6.QtWidgets import QApplication, QStyleFactory
from buzz.__version__ import VERSION
from buzz.db.dao.transcription_dao import TranscriptionDAO
@@ -26,139 +32,30 @@ class Application(QApplication):
self.setApplicationVersion(VERSION)
self.hide_main_window = False
- if sys.platform.startswith("win") and darkdetect.isDark():
- palette = QPalette()
- palette.setColor(QPalette.ColorRole.Window, QColor("#121212"))
- palette.setColor(QPalette.ColorRole.WindowText, QColor("#ffffff"))
- palette.setColor(QPalette.ColorRole.Base, QColor("#1e1e1e"))
- palette.setColor(QPalette.ColorRole.AlternateBase, QColor("#2e2e2e"))
- palette.setColor(QPalette.ColorRole.ToolTipBase, QColor("#ffffff"))
- palette.setColor(QPalette.ColorRole.ToolTipText, QColor("#000000"))
- palette.setColor(QPalette.ColorRole.Text, QColor("#ffffff"))
- palette.setColor(QPalette.ColorRole.Button, QColor("#1e1e1e"))
- palette.setColor(QPalette.ColorRole.ButtonText, QColor("#ffffff"))
- palette.setColor(QPalette.ColorRole.BrightText, QColor("#ff0000"))
- palette.setColor(QPalette.ColorRole.HighlightedText, QColor("#000000"))
+ if darkdetect.isDark():
+ self.styleHints().setColorScheme(Qt.ColorScheme.Dark)
+ self.setStyleSheet("QCheckBox::indicator:unchecked { border: 1px solid white; }")
- self.setPalette(palette)
-
- # For Windows 11
- stylesheet = """
- QWidget {
- background-color: #121212;
- color: #ffffff;
- }
- QPushButton {
- background-color: #1e1e1e;
- color: #ffffff;
- }
- QPushButton:hover {
- background-color: #2e2e2e;
- }
- QHeaderView::section {
- background-color: #1e1e1e;
- color: #ffffff;
- font-weight: bold;
- }
- QToolBar {
- border: 1px solid #2e2e2e;
- }
- QTabBar::tab {
- background-color: #1e1e1e;
- color: #ffffff;
- }
- QTabBar::tab:selected {
- background-color: #2e2e2e;
- }
- QLineEdit, QTextEdit, QPlainTextEdit, QSpinBox, QDoubleSpinBox,
- QTabWidget::pane, QFormLayout, QHBoxLayout, QVBoxLayout, QTreeWidget,
- QTableView, QGroupBox {
- border: 1px solid #2e2e2e;
- }
- QLineEdit:focus, QTextEdit:focus, QPlainTextEdit:focus, QSpinBox:focus, QDoubleSpinBox:focus,
- QTabWidget::pane:focus, QFormLayout:focus, QHBoxLayout:focus, QVBoxLayout:focus, QTreeWidget:focus,
- QTableView:focus, QGroupBox:focus {
- border: 1px solid #4e4e4e;
- }
- QMenuBar {
- background-color: #1e1e1e;
- color: #ffffff;
- }
- QMenuBar::item {
- background-color: #1e1e1e;
- color: #ffffff;
- }
- QMenuBar::item:selected {
- background-color: #2e2e2e;
- }
- QMenu::item {
- background-color: #1e1e1e;
- color: #ffffff;
- }
- QMenu::item:selected {
- background-color: #2e2e2e;
- }
- QMenu::item:hover {
- background-color: #2e2e2e;
- }
- QToolButton {
- background-color: transparent;
- min-height: 30px;
- min-width: 30px;
- }
- QToolButton:hover {
- background-color: #2e2e2e;
- }
- QScrollBar:vertical {
- background-color: #1e1e1e;
- width: 16px;
- margin: 16px 0 16px 0;
- }
- QScrollBar::handle:vertical {
- background-color: #2e2e2e;
- min-height: 20px;
- }
- QScrollBar::add-line:vertical {
- background-color: #1e1e1e;
- height: 16px;
- subcontrol-position: bottom;
- subcontrol-origin: margin;
- }
- QScrollBar::sub-line:vertical {
- background-color: #1e1e1e;
- height: 16px;
- subcontrol-position: top;
- subcontrol-origin: margin;
- }
- QScrollBar:horizontal {
- background-color: #1e1e1e;
- height: 16px;
- margin: 0 16px 0 16px;
- }
- QScrollBar::handle:horizontal {
- background-color: #2e2e2e;
- min-width: 20px;
- }
- QScrollBar::add-line:horizontal {
- background-color: #1e1e1e;
- width: 16px;
- subcontrol-position: right;
- subcontrol-origin: margin;
- }
- QScrollBar::sub-line:horizontal {
- background-color: #1e1e1e;
- width: 16px;
- subcontrol-position: left;
- subcontrol-origin: margin;
- }
- QScrollBar::sub-page:horizontal, QScrollBar::add-page:horizontal,
- QScrollBar::sub-page:vertical, QScrollBar::add-page:vertical {
- background-color: #1e1e1e;
- }
- """
- self.setStyleSheet(stylesheet)
+ if sys.platform.startswith("win"):
+ self.setStyle(QStyleFactory.create("Fusion"))
self.settings = Settings()
+ logging.debug(f"Settings filename: {self.settings.settings.fileName()}")
+
+ # Set BUZZ_FORCE_CPU environment variable if Force CPU setting is enabled
+ force_cpu_enabled = self.settings.value(
+ key=Settings.Key.FORCE_CPU, default_value=False
+ )
+ if force_cpu_enabled:
+ os.environ["BUZZ_FORCE_CPU"] = "true"
+
+ # Set BUZZ_REDUCE_GPU_MEMORY environment variable if Reduce GPU RAM setting is enabled
+ reduce_gpu_memory_enabled = self.settings.value(
+ key=Settings.Key.REDUCE_GPU_MEMORY, default_value=False
+ )
+ if reduce_gpu_memory_enabled:
+ os.environ["BUZZ_REDUCE_GPU_MEMORY"] = "true"
+
font_size = self.settings.value(
key=Settings.Key.FONT_SIZE, default_value=self.font().pointSize()
)
@@ -168,13 +65,34 @@ class Application(QApplication):
else:
self.setFont(QFont(self.font().family(), font_size))
- db = setup_app_db()
+ self.db = setup_app_db()
transcription_service = TranscriptionService(
- TranscriptionDAO(db), TranscriptionSegmentDAO(db)
+ TranscriptionDAO(self.db), TranscriptionSegmentDAO(self.db)
)
self.window = MainWindow(transcription_service)
+ disable_telemetry = os.getenv("BUZZ_DISABLE_TELEMETRY", None)
+
+ if not disable_telemetry:
+ posthog = Posthog(project_api_key='phc_NqZQUw8NcxfSXsbtk5eCFylmCQpp4FuNnd6ocPAzg2f',
+ host='https://us.i.posthog.com')
+ posthog.capture(distinct_id=self.settings.get_user_identifier(), event="app_launched", properties={
+ "app": VERSION,
+ "locale": locale.getlocale(),
+ "system": platform.system(),
+ "release": platform.release(),
+ "machine": platform.machine(),
+ "version": platform.version(),
+ })
+
+ logging.debug(f"Launching Buzz: {VERSION}, "
+ f"locale: {locale.getlocale()}, "
+ f"system: {platform.system()}, "
+ f"release: {platform.release()}, "
+ f"machine: {platform.machine()}, "
+ f"version: {platform.version()}, ")
+
def show_main_window(self):
if not self.hide_main_window:
self.window.show()
@@ -182,3 +100,7 @@ class Application(QApplication):
def add_task(self, task: FileTranscriptionTask, quit_on_complete: bool = False):
self.window.quit_on_complete = quit_on_complete
self.window.add_task(task)
+
+ def close_database(self):
+ from buzz.db.db import close_app_db
+ close_app_db()
diff --git a/buzz/widgets/audio_meter_widget.py b/buzz/widgets/audio_meter_widget.py
index 29b46900..e9664740 100644
--- a/buzz/widgets/audio_meter_widget.py
+++ b/buzz/widgets/audio_meter_widget.py
@@ -1,10 +1,12 @@
from typing import Optional
from PyQt6 import QtGui
-from PyQt6.QtCore import Qt
+from PyQt6.QtCore import Qt, QRect
from PyQt6.QtGui import QColor, QPainter
from PyQt6.QtWidgets import QWidget
+from buzz.locale import _
+
class AudioMeterWidget(QWidget):
current_amplitude: float
@@ -20,15 +22,19 @@ class AudioMeterWidget(QWidget):
def __init__(self, parent: Optional[QWidget] = None):
super().__init__(parent)
self.setMinimumWidth(10)
- self.setFixedHeight(16)
+ self.setFixedHeight(56)
+ self.BARS_HEIGHT = 28
# Extra padding to fix layout
- self.PADDING_TOP = 3
+ self.PADDING_TOP = 14
self.current_amplitude = 0.0
+ self.average_amplitude = 0.0
+ self.queue_size = 0
+
self.MINIMUM_AMPLITUDE = 0.00005 # minimum amplitude to show the first bar
- self.AMPLITUDE_SCALE_FACTOR = 15 # scale the amplitudes such that 1/AMPLITUDE_SCALE_FACTOR will show all bars
+ self.AMPLITUDE_SCALE_FACTOR = 10 # scale the amplitudes such that 1/AMPLITUDE_SCALE_FACTOR will show all bars
if self.palette().window().color().black() > 127:
self.BAR_INACTIVE_COLOR = QColor("#555")
@@ -58,18 +64,39 @@ class AudioMeterWidget(QWidget):
center_x - ((i + 1) * (self.BAR_MARGIN + self.BAR_WIDTH)),
rect.top() + self.PADDING_TOP,
self.BAR_WIDTH,
- rect.height() - self.PADDING_TOP,
+ self.BARS_HEIGHT - self.PADDING_TOP,
)
# draw to right
painter.drawRect(
center_x + (self.BAR_MARGIN + (i * (self.BAR_MARGIN + self.BAR_WIDTH))),
rect.top() + self.PADDING_TOP,
self.BAR_WIDTH,
- rect.height() - self.PADDING_TOP,
+ self.BARS_HEIGHT - self.PADDING_TOP,
)
+ text_rect = QRect(rect.left(), self.BARS_HEIGHT, rect.width(), rect.height() - self.BARS_HEIGHT)
+ painter.setPen(self.BAR_ACTIVE_COLOR)
+ average_volume_label = _("Average volume")
+ queue_label = _("Queue")
+ painter.drawText(text_rect, Qt.AlignmentFlag.AlignCenter,
+ f"{average_volume_label}: {self.average_amplitude:.4f} {queue_label}: {self.queue_size}")
+
+ def reset_amplitude(self):
+ self.current_amplitude = 0.0
+ self.average_amplitude = 0.0
+ self.queue_size = 0
+ self.repaint()
+
def update_amplitude(self, amplitude: float):
self.current_amplitude = max(
amplitude, self.current_amplitude * self.SMOOTHING_FACTOR
)
- self.repaint()
+ self.update()
+
+ def update_average_amplitude(self, amplitude: float):
+ self.average_amplitude = amplitude
+ self.update()
+
+ def update_queue_size(self, size: int):
+ self.queue_size = size
+ self.update()
diff --git a/buzz/widgets/audio_player.py b/buzz/widgets/audio_player.py
index cc714a0e..bb8d15ae 100644
--- a/buzz/widgets/audio_player.py
+++ b/buzz/widgets/audio_player.py
@@ -1,11 +1,14 @@
+import logging
from typing import Tuple, Optional
from PyQt6 import QtGui
from PyQt6.QtCore import QTime, QUrl, Qt, pyqtSignal
-from PyQt6.QtMultimedia import QAudioOutput, QMediaPlayer
-from PyQt6.QtWidgets import QWidget, QSlider, QPushButton, QLabel, QHBoxLayout
+from PyQt6.QtMultimedia import QAudioOutput, QMediaPlayer, QMediaDevices
+from PyQt6.QtWidgets import QWidget, QSlider, QPushButton, QLabel, QHBoxLayout, QVBoxLayout
from buzz.widgets.icon import PlayIcon, PauseIcon
+from buzz.settings.settings import Settings
+from buzz.transcriber.file_transcriber import is_video_file
class AudioPlayer(QWidget):
@@ -18,17 +21,51 @@ class AudioPlayer(QWidget):
self.position_ms = 0
self.duration_ms = 0
self.invalid_media = None
+ self.is_looping = False # Flag to prevent recursive position changes
+ self.is_slider_dragging = False # Flag to track if use is dragging slider
+
+ # Initialize settings
+ self.settings = Settings()
+
+ self.is_video = is_video_file(file_path)
self.audio_output = QAudioOutput()
self.audio_output.setVolume(100)
+ # Log audio device info for debugging
+ default_device = QMediaDevices.defaultAudioOutput()
+ if default_device.isNull():
+ logging.warning("No default audio output device found!")
+ else:
+ logging.info(f"Audio output device: {default_device.description()}")
+
+ audio_outputs = QMediaDevices.audioOutputs()
+ logging.info(f"Available audio outputs: {[d.description() for d in audio_outputs]}")
+
self.media_player = QMediaPlayer()
self.media_player.setSource(QUrl.fromLocalFile(file_path))
self.media_player.setAudioOutput(self.audio_output)
+ if self.is_video:
+ from PyQt6.QtMultimediaWidgets import QVideoWidget
+ self.video_widget = QVideoWidget(self)
+ self.media_player.setVideoOutput(self.video_widget)
+ else:
+ self.video_widget = None
+
+ # Speed control moved to transcription viewer - just set default rate
+ saved_rate = self.settings.value(Settings.Key.AUDIO_PLAYBACK_RATE, 1.0, float)
+ saved_rate = max(0.1, min(5.0, saved_rate)) # Ensure valid range
+ self.media_player.setPlaybackRate(saved_rate)
+
self.scrubber = QSlider(Qt.Orientation.Horizontal)
self.scrubber.setRange(0, 0)
self.scrubber.sliderMoved.connect(self.on_slider_moved)
+ self.scrubber.sliderPressed.connect(self.on_slider_pressed)
+ self.scrubber.sliderReleased.connect(self.on_slider_released)
+
+ # Track if user is dragging the slider
+ self.is_slider_dragging = False
self.play_icon = PlayIcon(self)
self.pause_icon = PauseIcon(self)
@@ -36,22 +73,39 @@ class AudioPlayer(QWidget):
self.play_button = QPushButton("")
self.play_button.setIcon(self.play_icon)
self.play_button.clicked.connect(self.toggle_play)
+ self.play_button.setMaximumWidth(40) # Match other button widths
+ self.play_button.setMinimumHeight(30) # Match other button heights
self.time_label = QLabel()
self.time_label.setAlignment(Qt.AlignmentFlag.AlignRight)
- layout = QHBoxLayout()
- layout.addWidget(self.play_button, alignment=Qt.AlignmentFlag.AlignVCenter)
- layout.addWidget(self.scrubber, alignment=Qt.AlignmentFlag.AlignVCenter)
- layout.addWidget(self.time_label, alignment=Qt.AlignmentFlag.AlignVCenter)
+ # Create main layout - simplified without speed controls
+ if self.is_video:
+ #Vertical layout for video
+ main_layout = QVBoxLayout()
+ main_layout.addWidget(self.video_widget, stretch=1) # As video takes more space
- self.setLayout(layout)
+ controls_layout = QHBoxLayout()
+ controls_layout.addWidget(self.play_button, alignment=Qt.AlignmentFlag.AlignVCenter)
+ controls_layout.addWidget(self.scrubber, alignment=Qt.AlignmentFlag.AlignVCenter)
+ controls_layout.addWidget(self.time_label, alignment=Qt.AlignmentFlag.AlignVCenter)
+
+ main_layout.addLayout(controls_layout)
+ else:
+ # Horizontal layout for audio only
+ main_layout = QHBoxLayout()
+ main_layout.addWidget(self.play_button, alignment=Qt.AlignmentFlag.AlignVCenter)
+ main_layout.addWidget(self.scrubber, alignment=Qt.AlignmentFlag.AlignVCenter)
+ main_layout.addWidget(self.time_label, alignment=Qt.AlignmentFlag.AlignVCenter)
+
+ self.setLayout(main_layout)
# Connect media player signals to the corresponding slots
self.media_player.durationChanged.connect(self.on_duration_changed)
self.media_player.positionChanged.connect(self.on_position_changed)
self.media_player.playbackStateChanged.connect(self.on_playback_state_changed)
self.media_player.mediaStatusChanged.connect(self.on_media_status_changed)
+ self.media_player.errorOccurred.connect(self.on_error_occurred)
self.on_duration_changed(self.media_player.duration())
@@ -61,17 +115,27 @@ class AudioPlayer(QWidget):
self.update_time_label()
def on_position_changed(self, position_ms: int):
- self.scrubber.setValue(position_ms)
+ # Don't update slider if user is currently dragging it
+ if not self.is_slider_dragging:
+ self.scrubber.blockSignals(True)
+ self.scrubber.setValue(position_ms)
+ self.scrubber.blockSignals(False)
+
self.position_ms = position_ms
self.position_ms_changed.emit(self.position_ms)
self.update_time_label()
# If a range has been selected as we've reached the end of the range,
# loop back to the start of the range
- if self.range_ms is not None:
+ if self.range_ms is not None and not self.is_looping:
start_range_ms, end_range_ms = self.range_ms
- if position_ms > end_range_ms:
+ # Check if we're at or past the end of the range (with small buffer for precision)
+ if position_ms >= (end_range_ms - 50): # Within 50ms of end
+ logging.debug(f"🔄 LOOP: Reached end {end_range_ms}ms, jumping to start {start_range_ms}ms")
+ self.is_looping = True # Set flag to prevent recursion
self.set_position(start_range_ms)
+ # Reset flag immediately after setting position
+ self.is_looping = False
def on_playback_state_changed(self, state: QMediaPlayer.PlaybackState):
if state == QMediaPlayer.PlaybackState.PlayingState:
@@ -80,12 +144,16 @@ class AudioPlayer(QWidget):
self.play_button.setIcon(self.play_icon)
def on_media_status_changed(self, status: QMediaPlayer.MediaStatus):
+ logging.debug(f"Media status changed: {status}")
match status:
case QMediaPlayer.MediaStatus.InvalidMedia:
self.set_invalid_media(True)
case QMediaPlayer.MediaStatus.LoadedMedia:
self.set_invalid_media(False)
+ def on_error_occurred(self, error: QMediaPlayer.Error, error_string: str):
+ logging.error(f"Media player error: {error} - {error_string}")
+
def set_invalid_media(self, invalid_media: bool):
self.invalid_media = invalid_media
if self.invalid_media:
@@ -93,6 +161,10 @@ class AudioPlayer(QWidget):
self.scrubber.setRange(0, 1)
self.scrubber.setDisabled(True)
self.time_label.setDisabled(True)
+ else:
+ self.play_button.setEnabled(True)
+ self.scrubber.setEnabled(True)
+ self.time_label.setEnabled(True)
def toggle_play(self):
if self.media_player.playbackState() == QMediaPlayer.PlaybackState.PlayingState:
@@ -101,13 +173,41 @@ class AudioPlayer(QWidget):
self.media_player.play()
def set_range(self, range_ms: Tuple[int, int]):
+ """Set a loop range. Only jump to start if current position is outside the range."""
self.range_ms = range_ms
- self.set_position(range_ms[0])
+ start_range_ms, end_range_ms = range_ms
+
+ # Only jump to start if current position is outside the range
+ if self.position_ms < start_range_ms or self.position_ms > end_range_ms:
+ logging.debug(f"🔄 LOOP: Position {self.position_ms}ms outside range, jumping to {start_range_ms}ms")
+ self.set_position(start_range_ms)
+
+ def clear_range(self):
+ """Clear the current loop range"""
+ self.range_ms = None
+
+ def _reset_looping_flag(self):
+ """Reset the looping flag"""
+ self.is_looping = False
def on_slider_moved(self, position_ms: int):
self.set_position(position_ms)
- # Reset range if slider is scrubbed manually
- self.range_ms = None
+ # Only clear range if scrubbed significantly outside the current range
+ if self.range_ms is not None:
+ start_range_ms, end_range_ms = self.range_ms
+ # Clear range if scrubbed more than 2 seconds outside the range
+ if position_ms < (start_range_ms - 2000) or position_ms > (end_range_ms + 2000):
+ self.range_ms = None
+
+ def on_slider_pressed(self):
+ """Called when the user starts dragging the slider"""
+ self.is_slider_dragging = True
+
+ def on_slider_released(self):
+ """Called when user releases the slider"""
+ self.is_slider_dragging = False
+ # Update the position where user released
+ self.set_position(self.scrubber.value())
def set_position(self, position_ms: int):
self.media_player.setPosition(position_ms)
diff --git a/buzz/widgets/icon.py b/buzz/widgets/icon.py
index 4dca94c4..12718725 100644
--- a/buzz/widgets/icon.py
+++ b/buzz/widgets/icon.py
@@ -82,6 +82,10 @@ class ResizeIcon(Icon):
def __init__(self, parent: QWidget):
super().__init__(get_path("assets/resize_black.svg"), parent)
+class SpeakerIdentificationIcon(Icon):
+ def __init__(self, parent: QWidget):
+ super().__init__(get_path("assets/speaker-identification.svg"), parent)
+
class VisibilityIcon(Icon):
def __init__(self, parent: QWidget):
super().__init__(
@@ -89,6 +93,32 @@ class VisibilityIcon(Icon):
)
+class ScrollToCurrentIcon(Icon):
+ def __init__(self, parent: QWidget):
+ super().__init__(
+ get_path("assets/visibility_FILL0_wght700_GRAD0_opsz48.svg"), parent
+ )
+
+class NewWindowIcon(Icon):
+ def __init__(self, parent: QWidget):
+ super().__init__(get_path("assets/icons/new-window.svg"), parent)
+
+
+class FullscreenIcon(Icon):
+ def __init__(self, parent: QWidget):
+ super().__init__(get_path("assets/icons/fullscreen.svg"), parent)
+
+
+class ColorBackgroundIcon(Icon):
+ def __init__(self, parent: QWidget):
+ super().__init__(get_path("assets/icons/color-background.svg"), parent)
+
+
+class TextColorIcon(Icon):
+ def __init__(self, parent: QWidget):
+ super().__init__(get_path("assets/icons/gui-text-color.svg"), parent)
+
+
BUZZ_ICON_PATH = get_path("assets/buzz.ico")
BUZZ_LARGE_ICON_PATH = get_path("assets/buzz-icon-1024.png")
@@ -96,5 +126,7 @@ INFO_ICON_PATH = get_path("assets/info-circle.svg")
RECORD_ICON_PATH = get_path("assets/mic_FILL0_wght700_GRAD0_opsz48.svg")
EXPAND_ICON_PATH = get_path("assets/open_in_full_FILL0_wght700_GRAD0_opsz48.svg")
ADD_ICON_PATH = get_path("assets/add_FILL0_wght700_GRAD0_opsz48.svg")
+URL_ICON_PATH = get_path("assets/url.svg")
TRASH_ICON_PATH = get_path("assets/delete_FILL0_wght700_GRAD0_opsz48.svg")
CANCEL_ICON_PATH = get_path("assets/cancel_FILL0_wght700_GRAD0_opsz48.svg")
+UPDATE_ICON_PATH = get_path("assets/update_FILL0_wght700_GRAD0_opsz48.svg")
\ No newline at end of file
diff --git a/buzz/widgets/icon_presentation.py b/buzz/widgets/icon_presentation.py
new file mode 100644
index 00000000..6f230971
--- /dev/null
+++ b/buzz/widgets/icon_presentation.py
@@ -0,0 +1,60 @@
+from PyQt6.QtGui import QIcon, QPixmap, QPainter, QPalette
+from PyQt6.QtCore import QSize
+from PyQt6.QtSvg import QSvgRenderer
+import os
+from buzz.assets import APP_BASE_DIR
+
+class PresentationIcon:
+ "Icons for presentation window controls"
+ def __init__(self, parent, svg_path: str, color: str = None):
+ self.parent = parent
+ self.svg_path = svg_path
+ self.color = color or self.get_default_color()
+
+
+ def get_default_color(self) -> str:
+ """Get default icon color based on theme"""
+ palette = self.parent.palette()
+ is_dark = palette.window().color().black() > 127
+
+ return "#EEE" if is_dark else "#555"
+
+ def get_icon(self) -> QIcon:
+ """Load SVG icon and return as QIcon"""
+ #Load from asset first
+ full_path = os.path.join(APP_BASE_DIR, "assets", "icons", os.path.basename(self.svg_path))
+
+ if not os.path.exists(full_path):
+ pixmap = QPixmap(24, 24)
+ pixmap.fill(self.color)
+
+ return QIcon(pixmap)
+
+ #Load SVG
+ renderer = QSvgRenderer(full_path)
+ pixmap = QPixmap(24, 24)
+ pixmap.fill(Qt.GlobalColor.transparent)
+ painter = QPainter(pixmap)
+ renderer.render(painter)
+ painter.end()
+
+ return QIcon(pixmap)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/buzz/widgets/main_window.py b/buzz/widgets/main_window.py
index 78b1483b..f877321a 100644
--- a/buzz/widgets/main_window.py
+++ b/buzz/widgets/main_window.py
@@ -1,15 +1,16 @@
import os
import logging
-import sounddevice
-import keyring
from typing import Tuple, List, Optional
+from uuid import UUID
from PyQt6 import QtGui
from PyQt6.QtCore import (
Qt,
QThread,
QModelIndex,
+ pyqtSignal
)
+
from PyQt6.QtGui import QIcon
from PyQt6.QtWidgets import (
QApplication,
@@ -23,6 +24,8 @@ from buzz.db.service.transcription_service import TranscriptionService
from buzz.file_transcriber_queue_worker import FileTranscriberQueueWorker
from buzz.locale import _
from buzz.settings.settings import APP_NAME, Settings
+from buzz.update_checker import UpdateChecker, UpdateInfo
+from buzz.widgets.update_dialog import UpdateDialog
from buzz.settings.shortcuts import Shortcuts
from buzz.store.keyring_store import set_password, Key
from buzz.transcriber.transcriber import (
@@ -36,11 +39,11 @@ from buzz.widgets.icon import BUZZ_ICON_PATH
from buzz.widgets.import_url_dialog import ImportURLDialog
from buzz.widgets.main_window_toolbar import MainWindowToolbar
from buzz.widgets.menu_bar import MenuBar
-from buzz.widgets.snap_notice import SnapNotice
from buzz.widgets.preferences_dialog.models.preferences import Preferences
from buzz.widgets.transcriber.file_transcriber_widget import FileTranscriberWidget
from buzz.widgets.transcription_task_folder_watcher import (
TranscriptionTaskFolderWatcher,
+ SUPPORTED_EXTENSIONS,
)
from buzz.widgets.transcription_tasks_table_widget import (
TranscriptionTasksTableWidget,
@@ -52,14 +55,13 @@ from buzz.widgets.transcription_viewer.transcription_viewer_widget import (
class MainWindow(QMainWindow):
table_widget: TranscriptionTasksTableWidget
+ transcriptions_updated = pyqtSignal(UUID)
def __init__(self, transcription_service: TranscriptionService):
super().__init__(flags=Qt.WindowType.Window)
self.setWindowTitle(APP_NAME)
self.setWindowIcon(QIcon(BUZZ_ICON_PATH))
- self.setBaseSize(1240, 600)
- self.resize(1240, 600)
self.setAcceptDrops(True)
@@ -70,10 +72,16 @@ class MainWindow(QMainWindow):
self.quit_on_complete = False
self.transcription_service = transcription_service
+ #update checker
+ self._update_info: Optional[UpdateInfo] = None
+
self.toolbar = MainWindowToolbar(shortcuts=self.shortcuts, parent=self)
self.toolbar.new_transcription_action_triggered.connect(
self.on_new_transcription_action_triggered
)
+ self.toolbar.new_url_transcription_action_triggered.connect(
+ self.on_new_url_transcription_action_triggered
+ )
self.toolbar.open_transcript_action_triggered.connect(
self.open_transcript_viewer
)
@@ -84,6 +92,7 @@ class MainWindow(QMainWindow):
self.on_stop_transcription_action_triggered
)
self.addToolBar(self.toolbar)
+ self.toolbar.update_action_triggered.connect(self.on_update_action_triggered)
self.setUnifiedTitleAndToolBarOnMac(True)
self.preferences = self.load_preferences(settings=self.settings)
@@ -98,6 +107,9 @@ class MainWindow(QMainWindow):
self.menu_bar.import_url_action_triggered.connect(
self.on_new_url_transcription_action_triggered
)
+ self.menu_bar.import_folder_action_triggered.connect(
+ self.on_import_folder_action_triggered
+ )
self.menu_bar.shortcuts_changed.connect(self.on_shortcuts_changed)
self.menu_bar.openai_api_key_changed.connect(
self.on_openai_access_token_changed
@@ -106,11 +118,16 @@ class MainWindow(QMainWindow):
self.setMenuBar(self.menu_bar)
self.table_widget = TranscriptionTasksTableWidget(self)
+ self.table_widget.transcription_service = self.transcription_service
self.table_widget.doubleClicked.connect(self.on_table_double_clicked)
self.table_widget.return_clicked.connect(self.open_transcript_viewer)
+ self.table_widget.delete_requested.connect(self.on_clear_history_action_triggered)
self.table_widget.selectionModel().selectionChanged.connect(
self.on_table_selection_changed
)
+ self.transcriptions_updated.connect(
+ self.on_transcriptions_updated
+ )
self.setCentralWidget(self.table_widget)
@@ -145,23 +162,8 @@ class MainWindow(QMainWindow):
self.transcription_viewer_widget = None
- if os.environ.get('SNAP_NAME', '') == 'buzz':
- logging.debug("Running in a snap environment")
- self.check_linux_permissions()
-
- def check_linux_permissions(self):
- devices = sounddevice.query_devices()
- input_devices = [device for device in devices if device['max_input_channels'] > 0]
-
- if len(input_devices) == 0:
- snap_notice = SnapNotice(self)
- snap_notice.show()
-
- try:
- _ = keyring.get_password(APP_NAME, username="random")
- except Exception:
- snap_notice = SnapNotice(self)
- snap_notice.show()
+ #Initialize and run update checker
+ self._init_update_checker()
def on_preferences_changed(self, preferences: Preferences):
self.preferences = preferences
@@ -266,6 +268,20 @@ class MainWindow(QMainWindow):
if url is not None:
self.open_file_transcriber_widget(url=url)
+ def on_import_folder_action_triggered(self):
+ folder = QFileDialog.getExistingDirectory(self, _("Select folder"))
+ if not folder:
+ return
+ file_paths = []
+ for dirpath, _dirs, filenames in os.walk(folder):
+ for filename in filenames:
+ ext = os.path.splitext(filename)[1].lower()
+ if ext in SUPPORTED_EXTENSIONS:
+ file_paths.append(os.path.join(dirpath, filename))
+ if not file_paths:
+ return
+ self.open_file_transcriber_widget(file_paths)
+
def open_file_transcriber_widget(
self, file_paths: Optional[List[str]] = None, url: Optional[str] = None
):
@@ -368,6 +384,7 @@ class MainWindow(QMainWindow):
shortcuts=self.shortcuts,
parent=self,
flags=Qt.WindowType.Window,
+ transcriptions_updated_signal=self.transcriptions_updated,
)
self.transcription_viewer_widget.show()
@@ -376,6 +393,9 @@ class MainWindow(QMainWindow):
self.table_widget.refresh_all()
self.transcriber_worker.add_task(task)
+ def on_transcriptions_updated(self):
+ self.table_widget.refresh_all()
+
def on_task_started(self, task: FileTranscriptionTask):
self.transcription_service.update_transcription_as_started(task.uid)
self.table_widget.refresh_row(task.uid)
@@ -391,6 +411,14 @@ class MainWindow(QMainWindow):
pass
def on_task_completed(self, task: FileTranscriptionTask, segments: List[Segment]):
+ # Update file path in database only for URL imports where file is downloaded
+ if task.source == FileTranscriptionTask.Source.URL_IMPORT and task.file_path:
+ logging.debug(f"Updating transcription file path: {task.file_path}")
+ # Use the file basename (video title) as the display name
+ basename = os.path.basename(task.file_path)
+ name = os.path.splitext(basename)[0] # Remove .wav extension
+ self.transcription_service.update_transcription_file_and_name(task.uid, task.file_path, name)
+
self.transcription_service.update_transcription_as_completed(task.uid, segments)
self.table_widget.refresh_row(task.uid)
@@ -416,14 +444,48 @@ class MainWindow(QMainWindow):
def closeEvent(self, event: QtGui.QCloseEvent) -> None:
self.save_geometry()
+ self.settings.settings.sync()
+
+ if self.folder_watcher:
+ try:
+ self.folder_watcher.task_found.disconnect()
+ if len(self.folder_watcher.directories()) > 0:
+ self.folder_watcher.removePaths(self.folder_watcher.directories())
+ except Exception as e:
+ logging.warning(f"Error cleaning up folder watcher: {e}")
+
+ try:
+ self.transcriber_worker.task_started.disconnect()
+ self.transcriber_worker.task_progress.disconnect()
+ self.transcriber_worker.task_download_progress.disconnect()
+ self.transcriber_worker.task_error.disconnect()
+ self.transcriber_worker.task_completed.disconnect()
+ except Exception as e:
+ logging.warning(f"Error disconnecting signals: {e}")
self.transcriber_worker.stop()
self.transcriber_thread.quit()
- self.transcriber_thread.wait()
+
+ if self.transcriber_thread.isRunning():
+ if not self.transcriber_thread.wait(10000):
+ logging.warning("Transcriber thread did not finish within 10s timeout, terminating")
+ self.transcriber_thread.terminate()
+ if not self.transcriber_thread.wait(2000):
+ logging.error("Transcriber thread could not be terminated")
if self.transcription_viewer_widget is not None:
self.transcription_viewer_widget.close()
+ try:
+ from buzz.widgets.application import Application
+ app = Application.instance()
+ if app and hasattr(app, 'close_database'):
+ app.close_database()
+ except Exception as e:
+ logging.warning(f"Error closing database: {e}")
+
+ logging.debug("MainWindow closeEvent completed")
+
super().closeEvent(event)
def save_geometry(self):
@@ -436,4 +498,31 @@ class MainWindow(QMainWindow):
geometry = self.settings.settings.value("geometry")
if geometry is not None:
self.restoreGeometry(geometry)
+ else:
+ self.setBaseSize(1240, 600)
+ self.resize(1240, 600)
self.settings.end_group()
+
+ def _init_update_checker(self):
+ """Initializes and runs the update checker."""
+ self.update_checker = UpdateChecker(settings=self.settings, parent=self)
+ self.update_checker.update_available.connect(self._on_update_available)
+
+ # Check for updates on startup
+ self.update_checker.check_for_updates()
+
+ def _on_update_available(self, update_info: UpdateInfo):
+ """Called when an update is available."""
+ self._update_info = update_info
+ self.toolbar.set_update_available(True)
+
+ def on_update_action_triggered(self):
+ """Called when user clicks the update action in toolbar."""
+ if self._update_info is None:
+ return
+
+ dialog = UpdateDialog(
+ update_info=self._update_info,
+ parent=self
+ )
+ dialog.exec()
\ No newline at end of file
diff --git a/buzz/widgets/main_window_toolbar.py b/buzz/widgets/main_window_toolbar.py
index 74f4ced9..fdbc8a2e 100644
--- a/buzz/widgets/main_window_toolbar.py
+++ b/buzz/widgets/main_window_toolbar.py
@@ -12,9 +12,11 @@ from buzz.widgets.icon import Icon
from buzz.widgets.icon import (
RECORD_ICON_PATH,
ADD_ICON_PATH,
+ URL_ICON_PATH,
EXPAND_ICON_PATH,
CANCEL_ICON_PATH,
TRASH_ICON_PATH,
+ UPDATE_ICON_PATH,
)
from buzz.widgets.recording_transcriber_widget import RecordingTranscriberWidget
from buzz.widgets.toolbar import ToolBar
@@ -22,8 +24,10 @@ from buzz.widgets.toolbar import ToolBar
class MainWindowToolbar(ToolBar):
new_transcription_action_triggered: pyqtSignal
+ new_url_transcription_action_triggered: pyqtSignal
open_transcript_action_triggered: pyqtSignal
clear_history_action_triggered: pyqtSignal
+ update_action_triggered: pyqtSignal
ICON_LIGHT_THEME_BACKGROUND = "#555"
ICON_DARK_THEME_BACKGROUND = "#AAA"
@@ -35,13 +39,22 @@ class MainWindowToolbar(ToolBar):
self.record_action = Action(Icon(RECORD_ICON_PATH, self), _("Record"), self)
self.record_action.triggered.connect(self.on_record_action_triggered)
+ # Note: Changes to "New File Transcription" need to be reflected
+ # also in tests/widgets/main_window_test.py
self.new_transcription_action = Action(
- Icon(ADD_ICON_PATH, self), _("New Transcription"), self
+ Icon(ADD_ICON_PATH, self), _("New File Transcription"), self
)
self.new_transcription_action_triggered = (
self.new_transcription_action.triggered
)
+ self.new_url_transcription_action = Action(
+ Icon(URL_ICON_PATH, self), _("New URL Transcription"), self
+ )
+ self.new_url_transcription_action_triggered = (
+ self.new_url_transcription_action.triggered
+ )
+
self.open_transcript_action = Action(
Icon(EXPAND_ICON_PATH, self), _("Open Transcript"), self
)
@@ -59,6 +72,13 @@ class MainWindowToolbar(ToolBar):
self.clear_history_action = Action(
Icon(TRASH_ICON_PATH, self), _("Clear History"), self
)
+
+ self.update_action = Action(
+ Icon(UPDATE_ICON_PATH, self), _("Update Available"), self
+ )
+ self.update_action_triggered = self.update_action.triggered
+ self.update_action.setVisible(False)
+
self.clear_history_action_triggered = self.clear_history_action.triggered
self.clear_history_action.setDisabled(True)
@@ -69,11 +89,16 @@ class MainWindowToolbar(ToolBar):
self.addActions(
[
self.new_transcription_action,
+ self.new_url_transcription_action,
self.open_transcript_action,
self.stop_transcription_action,
self.clear_history_action,
]
)
+
+ self.addSeparator()
+ self.addAction(self.update_action)
+
self.setMovable(False)
self.setToolButtonStyle(Qt.ToolButtonStyle.ToolButtonIconOnly)
@@ -81,9 +106,6 @@ class MainWindowToolbar(ToolBar):
self.record_action.setShortcut(
QKeySequence.fromString(self.shortcuts.get(Shortcut.OPEN_RECORD_WINDOW))
)
- self.new_transcription_action.setShortcut(
- QKeySequence.fromString(self.shortcuts.get(Shortcut.OPEN_IMPORT_WINDOW))
- )
self.stop_transcription_action.setShortcut(
QKeySequence.fromString(self.shortcuts.get(Shortcut.STOP_TRANSCRIPTION))
)
@@ -105,3 +127,7 @@ class MainWindowToolbar(ToolBar):
def set_clear_history_action_enabled(self, enabled: bool):
self.clear_history_action.setEnabled(enabled)
+
+ def set_update_available(self, available: bool):
+ """Shows or hides the update action in the toolbar."""
+ self.update_action.setVisible(available)
diff --git a/buzz/widgets/menu_bar.py b/buzz/widgets/menu_bar.py
index fb757c5c..f30857c0 100644
--- a/buzz/widgets/menu_bar.py
+++ b/buzz/widgets/menu_bar.py
@@ -1,3 +1,4 @@
+import platform
import webbrowser
from typing import Optional
@@ -19,6 +20,7 @@ from buzz.widgets.preferences_dialog.preferences_dialog import (
class MenuBar(QMenuBar):
import_action_triggered = pyqtSignal()
import_url_action_triggered = pyqtSignal()
+ import_folder_action_triggered = pyqtSignal()
shortcuts_changed = pyqtSignal()
openai_api_key_changed = pyqtSignal(str)
preferences_changed = pyqtSignal(Preferences)
@@ -41,12 +43,17 @@ class MenuBar(QMenuBar):
self.import_url_action = QAction(_("Import URL..."), self)
self.import_url_action.triggered.connect(self.import_url_action_triggered)
+ self.import_folder_action = QAction(_("Import Folder..."), self)
+ self.import_folder_action.triggered.connect(self.import_folder_action_triggered)
+
about_label = _("About")
about_action = QAction(f'{about_label} {APP_NAME}', self)
about_action.triggered.connect(self.on_about_action_triggered)
+ about_action.setMenuRole(QAction.MenuRole.AboutRole)
self.preferences_action = QAction(_("Preferences..."), self)
self.preferences_action.triggered.connect(self.on_preferences_action_triggered)
+ self.preferences_action.setMenuRole(QAction.MenuRole.PreferencesRole)
help_label = _("Help")
help_action = QAction(f'{help_label}', self)
@@ -57,8 +64,10 @@ class MenuBar(QMenuBar):
file_menu = self.addMenu(_("File"))
file_menu.addAction(self.import_action)
file_menu.addAction(self.import_url_action)
+ file_menu.addAction(self.import_folder_action)
- help_menu = self.addMenu(_("Help"))
+ help_menu_title = _("Help") + ("\u200B" if platform.system() == "Darwin" else "")
+ help_menu = self.addMenu(help_menu_title)
help_menu.addAction(about_action)
help_menu.addAction(help_action)
help_menu.addAction(self.preferences_action)
diff --git a/buzz/widgets/model_download_progress_dialog.py b/buzz/widgets/model_download_progress_dialog.py
index ff05f62d..3c2bba80 100644
--- a/buzz/widgets/model_download_progress_dialog.py
+++ b/buzz/widgets/model_download_progress_dialog.py
@@ -18,8 +18,9 @@ class ModelDownloadProgressDialog(QProgressDialog):
):
super().__init__(parent)
+ self.setMinimumWidth(350)
self.cancelable = (
- model_type == ModelType.WHISPER or model_type == ModelType.WHISPER_CPP
+ model_type == ModelType.WHISPER
)
self.start_time = datetime.now()
self.setRange(0, 100)
diff --git a/buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py b/buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
index abc8c371..e7a3c0c9 100644
--- a/buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
+++ b/buzz/widgets/preferences_dialog/folder_watch_preferences_widget.py
@@ -44,11 +44,16 @@ class FolderWatchPreferencesWidget(QWidget):
checkbox.setObjectName("EnableFolderWatchCheckbox")
checkbox.stateChanged.connect(self.on_enable_changed)
- input_folder_browse_button = QPushButton(_("Browse"))
- input_folder_browse_button.clicked.connect(self.on_click_browse_input_folder)
+ delete_checkbox = QCheckBox(_("Delete processed files"))
+ delete_checkbox.setChecked(config.delete_processed_files)
+ delete_checkbox.setObjectName("DeleteProcessedFilesCheckbox")
+ delete_checkbox.stateChanged.connect(self.on_delete_processed_files_changed)
- output_folder_browse_button = QPushButton(_("Browse"))
- output_folder_browse_button.clicked.connect(self.on_click_browse_output_folder)
+ self.input_folder_browse_button = QPushButton(_("Browse"))
+ self.input_folder_browse_button.clicked.connect(self.on_click_browse_input_folder)
+
+ self.output_folder_browse_button = QPushButton(_("Browse"))
+ self.output_folder_browse_button.clicked.connect(self.on_click_browse_output_folder)
input_folder_row = QHBoxLayout()
self.input_folder_line_edit = LineEdit(config.input_directory, self)
@@ -57,7 +62,7 @@ class FolderWatchPreferencesWidget(QWidget):
self.input_folder_line_edit.setObjectName("InputFolderLineEdit")
input_folder_row.addWidget(self.input_folder_line_edit)
- input_folder_row.addWidget(input_folder_browse_button)
+ input_folder_row.addWidget(self.input_folder_browse_button)
output_folder_row = QHBoxLayout()
self.output_folder_line_edit = LineEdit(config.output_directory, self)
@@ -66,7 +71,7 @@ class FolderWatchPreferencesWidget(QWidget):
self.output_folder_line_edit.setObjectName("OutputFolderLineEdit")
output_folder_row.addWidget(self.output_folder_line_edit)
- output_folder_row.addWidget(output_folder_browse_button)
+ output_folder_row.addWidget(self.output_folder_browse_button)
openai_access_token = get_password(Key.OPENAI_API_KEY)
(
@@ -77,15 +82,17 @@ class FolderWatchPreferencesWidget(QWidget):
file_paths=[],
)
- transcription_form_widget = FileTranscriptionFormWidget(
+ self.transcription_form_widget = FileTranscriptionFormWidget(
transcription_options=transcription_options,
file_transcription_options=file_transcription_options,
parent=self,
)
- transcription_form_widget.transcription_options_changed.connect(
+ self.transcription_form_widget.transcription_options_changed.connect(
self.on_transcription_options_changed
)
+ self.delete_checkbox = delete_checkbox
+
layout = QVBoxLayout(self)
folders_form_layout = QFormLayout()
@@ -93,14 +100,17 @@ class FolderWatchPreferencesWidget(QWidget):
folders_form_layout.addRow("", checkbox)
folders_form_layout.addRow(_("Input folder"), input_folder_row)
folders_form_layout.addRow(_("Output folder"), output_folder_row)
- folders_form_layout.addWidget(transcription_form_widget)
+ folders_form_layout.addRow("", delete_checkbox)
+ folders_form_layout.addWidget(self.transcription_form_widget)
layout.addLayout(folders_form_layout)
- layout.addWidget(transcription_form_widget)
+ layout.addWidget(self.transcription_form_widget)
layout.addStretch()
self.setLayout(layout)
+ self._set_settings_enabled(config.enabled)
+
def on_click_browse_input_folder(self):
folder = QFileDialog.getExistingDirectory(self, _("Select Input Folder"))
self.input_folder_line_edit.setText(folder)
@@ -119,8 +129,22 @@ class FolderWatchPreferencesWidget(QWidget):
self.config.output_directory = folder
self.config_changed.emit(self.config)
+ def _set_settings_enabled(self, enabled: bool):
+ self.input_folder_line_edit.setEnabled(enabled)
+ self.input_folder_browse_button.setEnabled(enabled)
+ self.output_folder_line_edit.setEnabled(enabled)
+ self.output_folder_browse_button.setEnabled(enabled)
+ self.delete_checkbox.setEnabled(enabled)
+ self.transcription_form_widget.setEnabled(enabled)
+
def on_enable_changed(self, state: int):
- self.config.enabled = state == 2
+ enabled = state == 2
+ self.config.enabled = enabled
+ self._set_settings_enabled(enabled)
+ self.config_changed.emit(self.config)
+
+ def on_delete_processed_files_changed(self, state: int):
+ self.config.delete_processed_files = state == 2
self.config_changed.emit(self.config)
def on_transcription_options_changed(
diff --git a/buzz/widgets/preferences_dialog/general_preferences_widget.py b/buzz/widgets/preferences_dialog/general_preferences_widget.py
index b68853de..ff49f63c 100644
--- a/buzz/widgets/preferences_dialog/general_preferences_widget.py
+++ b/buzz/widgets/preferences_dialog/general_preferences_widget.py
@@ -4,7 +4,7 @@ import requests
from typing import Optional
from platformdirs import user_documents_dir
-from PyQt6.QtCore import QRunnable, QObject, pyqtSignal, QThreadPool
+from PyQt6.QtCore import QRunnable, QObject, pyqtSignal, QThreadPool, QLocale
from PyQt6.QtWidgets import (
QWidget,
QFormLayout,
@@ -15,7 +15,10 @@ from PyQt6.QtWidgets import (
QFileDialog,
QSpinBox,
QComboBox,
+ QLabel,
+ QSizePolicy,
)
+from PyQt6.QtGui import QIcon
from openai import AuthenticationError, OpenAI
from buzz.settings.settings import Settings
@@ -23,9 +26,27 @@ from buzz.store.keyring_store import get_password, Key
from buzz.widgets.line_edit import LineEdit
from buzz.widgets.openai_api_key_line_edit import OpenAIAPIKeyLineEdit
from buzz.locale import _
+from buzz.widgets.icon import INFO_ICON_PATH
from buzz.settings.recording_transcriber_mode import RecordingTranscriberMode
-base64_pattern = re.compile(r'^[A-Za-z0-9+/=]*$')
+BASE64_PATTERN = re.compile(r'^[A-Za-z0-9+/=_-]*$')
+
+ui_locales = {
+ "en_US": _("English"),
+ "ca_ES": _("Catalan"),
+ "da_DK": _("Danish"),
+ "nl": _("Dutch"),
+ "de_DE": _("German"),
+ "es_ES": _("Spanish"),
+ "it_IT": _("Italian"),
+ "ja_JP": _("Japanese"),
+ "lv_LV": _("Latvian"),
+ "pl_PL": _("Polish"),
+ "pt_BR": _("Portuguese (Brazil)"),
+ "uk_UA": _("Ukrainian"),
+ "zh_CN": _("Chinese (Simplified)"),
+ "zh_TW": _("Chinese (Traditional)")
+}
class GeneralPreferencesWidget(QWidget):
@@ -43,6 +64,31 @@ class GeneralPreferencesWidget(QWidget):
layout = QFormLayout(self)
+ self.ui_language_combo_box = QComboBox(self)
+ self.ui_language_combo_box.addItems(ui_locales.values())
+ system_locale = self.settings.value(Settings.Key.UI_LOCALE, QLocale().name())
+ locale_index = 0
+ for i, (code, language) in enumerate(ui_locales.items()):
+ if code == system_locale:
+ locale_index = i
+ break
+ self.ui_language_combo_box.setCurrentIndex(locale_index)
+ self.ui_language_combo_box.setSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Fixed)
+ self.ui_language_combo_box.currentIndexChanged.connect(self.on_language_changed)
+
+ self.ui_locale_layout = QHBoxLayout()
+ self.ui_locale_layout.setContentsMargins(0, 0, 0, 0)
+ self.ui_locale_layout.setSpacing(0)
+ self.ui_locale_layout.addWidget(self.ui_language_combo_box)
+
+ self.load_note_tooltip_icon = QLabel()
+ self.load_note_tooltip_icon.setPixmap(QIcon(INFO_ICON_PATH).pixmap(23, 23))
+ self.load_note_tooltip_icon.setToolTip(_("Restart required!"))
+ self.load_note_tooltip_icon.setVisible(False)
+ self.ui_locale_layout.addWidget(self.load_note_tooltip_icon)
+
+ layout.addRow(_("Ui Language"), self.ui_locale_layout)
+
self.font_size_spin_box = QSpinBox(self)
self.font_size_spin_box.setMinimum(8)
self.font_size_spin_box.setMaximum(32)
@@ -79,6 +125,18 @@ class GeneralPreferencesWidget(QWidget):
self.custom_openai_base_url_line_edit.setPlaceholderText("https://api.openai.com/v1")
layout.addRow(_("OpenAI base url"), self.custom_openai_base_url_line_edit)
+ self.openai_api_model = self.settings.value(
+ key=Settings.Key.OPENAI_API_MODEL, default_value="whisper-1"
+ )
+
+ self.openai_api_model_line_edit = LineEdit(self.openai_api_model, self)
+ self.openai_api_model_line_edit.textChanged.connect(
+ self.on_openai_api_model_changed
+ )
+ self.openai_api_model_line_edit.setMinimumWidth(200)
+ self.openai_api_model_line_edit.setPlaceholderText("whisper-1")
+ layout.addRow(_("OpenAI API model"), self.openai_api_model_line_edit)
+
default_export_file_name = self.settings.get_default_export_file_template()
default_export_file_name_line_edit = LineEdit(default_export_file_name, self)
@@ -130,6 +188,39 @@ class GeneralPreferencesWidget(QWidget):
layout.addRow(_("Live recording mode"), self.recording_transcriber_mode)
+ export_note_label = QLabel(
+ _("Note: Live recording export settings will be moved to the Advanced Settings in the Live Recording screen in a future version."),
+ self,
+ )
+ export_note_label.setWordWrap(True)
+ export_note_label.setSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Preferred)
+ layout.addRow("", export_note_label)
+
+ self.reduce_gpu_memory_enabled = self.settings.value(
+ key=Settings.Key.REDUCE_GPU_MEMORY, default_value=False
+ )
+
+ self.reduce_gpu_memory_checkbox = QCheckBox(_("Use 8-bit quantization to reduce memory usage"))
+ self.reduce_gpu_memory_checkbox.setChecked(self.reduce_gpu_memory_enabled)
+ self.reduce_gpu_memory_checkbox.setObjectName("ReduceGPUMemoryCheckbox")
+ self.reduce_gpu_memory_checkbox.setToolTip(
+ _("Applies to Huggingface and Faster Whisper models. "
+ "Reduces GPU memory usage but may slightly decrease transcription quality.")
+ )
+ self.reduce_gpu_memory_checkbox.stateChanged.connect(self.on_reduce_gpu_memory_changed)
+ layout.addRow(_("Reduce GPU RAM"), self.reduce_gpu_memory_checkbox)
+
+ self.force_cpu_enabled = self.settings.value(
+ key=Settings.Key.FORCE_CPU, default_value=False
+ )
+
+ self.force_cpu_checkbox = QCheckBox(_("Use only CPU and disable GPU acceleration"))
+ self.force_cpu_checkbox.setChecked(self.force_cpu_enabled)
+ self.force_cpu_checkbox.setObjectName("ForceCPUCheckbox")
+ self.force_cpu_checkbox.setToolTip(_("Set this if larger models do not fit your GPU memory and Buzz crashes"))
+ self.force_cpu_checkbox.stateChanged.connect(self.on_force_cpu_changed)
+ layout.addRow(_("Disable GPU"), self.force_cpu_checkbox)
+
self.setLayout(layout)
def on_default_export_file_name_changed(self, text: str):
@@ -141,7 +232,7 @@ class GeneralPreferencesWidget(QWidget):
def on_click_test_openai_api_key_button(self):
self.test_openai_api_key_button.setEnabled(False)
- job = TestOpenAIApiKeyJob(api_key=self.openai_api_key)
+ job = ValidateOpenAIApiKeyJob(api_key=self.openai_api_key)
job.signals.success.connect(self.on_test_openai_api_key_success)
job.signals.failed.connect(self.on_test_openai_api_key_failure)
job.setAutoDelete(True)
@@ -167,16 +258,19 @@ class GeneralPreferencesWidget(QWidget):
self.openai_api_key_changed.emit(key)
def on_openai_api_key_focus_out(self):
- if not base64_pattern.match(self.openai_api_key):
+ if not BASE64_PATTERN.match(self.openai_api_key):
QMessageBox.warning(
self,
_("Invalid API key"),
- _("API supports only base64 characters (A-Za-z0-9+/=). Other characters in API key may cause errors."),
+ _("API supports only base64 characters (A-Za-z0-9+/=_-). Other characters in API key may cause errors."),
)
def on_custom_openai_base_url_changed(self, text: str):
self.settings.set_value(Settings.Key.CUSTOM_OPENAI_BASE_URL, text)
+ def on_openai_api_model_changed(self, text: str):
+ self.settings.set_value(Settings.Key.OPENAI_API_MODEL, text)
+
def on_recording_export_enable_changed(self, state: int):
self.recording_export_enabled = state == 2
@@ -199,6 +293,14 @@ class GeneralPreferencesWidget(QWidget):
folder,
)
+ def on_language_changed(self, index):
+ selected_language = self.ui_language_combo_box.itemText(index)
+ locale_code = next((code for code, lang in ui_locales.items() if lang == selected_language), "en_US")
+
+ self.load_note_tooltip_icon.setVisible(True)
+
+ self.settings.set_value(Settings.Key.UI_LOCALE, locale_code)
+
def on_font_size_changed(self, value):
from buzz.widgets.application import Application
font = self.font()
@@ -211,7 +313,28 @@ class GeneralPreferencesWidget(QWidget):
def on_recording_transcriber_mode_changed(self, value):
self.settings.set_value(Settings.Key.RECORDING_TRANSCRIBER_MODE, value)
-class TestOpenAIApiKeyJob(QRunnable):
+ def on_force_cpu_changed(self, state: int):
+ import os
+ self.force_cpu_enabled = state == 2
+ self.settings.set_value(Settings.Key.FORCE_CPU, self.force_cpu_enabled)
+
+ if self.force_cpu_enabled:
+ os.environ["BUZZ_FORCE_CPU"] = "true"
+ else:
+ os.environ.pop("BUZZ_FORCE_CPU", None)
+
+ def on_reduce_gpu_memory_changed(self, state: int):
+ import os
+ self.reduce_gpu_memory_enabled = state == 2
+ self.settings.set_value(Settings.Key.REDUCE_GPU_MEMORY, self.reduce_gpu_memory_enabled)
+
+ if self.reduce_gpu_memory_enabled:
+ os.environ["BUZZ_REDUCE_GPU_MEMORY"] = "true"
+ else:
+ os.environ.pop("BUZZ_REDUCE_GPU_MEMORY", None)
+
+
+class ValidateOpenAIApiKeyJob(QRunnable):
class Signals(QObject):
success = pyqtSignal()
failed = pyqtSignal(str)
@@ -253,7 +376,7 @@ class TestOpenAIApiKeyJob(QRunnable):
client = OpenAI(
api_key=self.api_key,
base_url=custom_openai_base_url if custom_openai_base_url else None,
- timeout=5,
+ timeout=15,
)
client.models.list()
self.signals.success.emit()
diff --git a/buzz/widgets/preferences_dialog/models/file_transcription_preferences.py b/buzz/widgets/preferences_dialog/models/file_transcription_preferences.py
index 228bb8b7..91e31494 100644
--- a/buzz/widgets/preferences_dialog/models/file_transcription_preferences.py
+++ b/buzz/widgets/preferences_dialog/models/file_transcription_preferences.py
@@ -7,7 +7,6 @@ from buzz.model_loader import TranscriptionModel
from buzz.transcriber.transcriber import (
Task,
OutputFormat,
- DEFAULT_WHISPER_TEMPERATURE,
TranscriptionOptions,
FileTranscriptionOptions,
)
@@ -19,7 +18,7 @@ class FileTranscriptionPreferences:
task: Task
model: TranscriptionModel
word_level_timings: bool
- temperature: Tuple[float, ...]
+ extract_speech: bool
initial_prompt: str
enable_llm_translation: bool
llm_prompt: str
@@ -31,7 +30,7 @@ class FileTranscriptionPreferences:
settings.setValue("task", self.task)
settings.setValue("model", self.model)
settings.setValue("word_level_timings", self.word_level_timings)
- settings.setValue("temperature", self.temperature)
+ settings.setValue("extract_speech", self.extract_speech)
settings.setValue("initial_prompt", self.initial_prompt)
settings.setValue("enable_llm_translation", self.enable_llm_translation)
settings.setValue("llm_model", self.llm_model)
@@ -53,7 +52,10 @@ class FileTranscriptionPreferences:
word_level_timings = False if word_level_timings_value == "false" \
else bool(word_level_timings_value)
- temperature = settings.value("temperature", DEFAULT_WHISPER_TEMPERATURE)
+ extract_speech_value = settings.value("extract_speech", False)
+ extract_speech = False if extract_speech_value == "false" \
+ else bool(extract_speech_value)
+
initial_prompt = settings.value("initial_prompt", "")
enable_llm_translation_value = settings.value("enable_llm_translation", False)
enable_llm_translation = False if enable_llm_translation_value == "false" \
@@ -68,7 +70,7 @@ class FileTranscriptionPreferences:
if model.model_type.is_available()
else TranscriptionModel.default(),
word_level_timings=word_level_timings,
- temperature=temperature,
+ extract_speech=extract_speech,
initial_prompt=initial_prompt,
enable_llm_translation=enable_llm_translation,
llm_model=llm_model,
@@ -87,12 +89,12 @@ class FileTranscriptionPreferences:
return FileTranscriptionPreferences(
task=transcription_options.task,
language=transcription_options.language,
- temperature=transcription_options.temperature,
initial_prompt=transcription_options.initial_prompt,
enable_llm_translation=transcription_options.enable_llm_translation,
llm_model=transcription_options.llm_model,
llm_prompt=transcription_options.llm_prompt,
word_level_timings=transcription_options.word_level_timings,
+ extract_speech=transcription_options.extract_speech,
model=transcription_options.model,
output_formats=file_transcription_options.output_formats,
)
@@ -107,12 +109,12 @@ class FileTranscriptionPreferences:
TranscriptionOptions(
task=self.task,
language=self.language,
- temperature=self.temperature,
initial_prompt=self.initial_prompt,
enable_llm_translation=self.enable_llm_translation,
llm_model=self.llm_model,
llm_prompt=self.llm_prompt,
word_level_timings=self.word_level_timings,
+ extract_speech=self.extract_speech,
model=self.model,
openai_access_token=openai_access_token,
),
diff --git a/buzz/widgets/preferences_dialog/models/folder_watch_preferences.py b/buzz/widgets/preferences_dialog/models/folder_watch_preferences.py
index f754a4ea..6dcea82a 100644
--- a/buzz/widgets/preferences_dialog/models/folder_watch_preferences.py
+++ b/buzz/widgets/preferences_dialog/models/folder_watch_preferences.py
@@ -13,11 +13,13 @@ class FolderWatchPreferences:
input_directory: str
output_directory: str
file_transcription_options: FileTranscriptionPreferences
+ delete_processed_files: bool = False
def save(self, settings: QSettings):
settings.setValue("enabled", self.enabled)
settings.setValue("input_folder", self.input_directory)
settings.setValue("output_directory", self.output_directory)
+ settings.setValue("delete_processed_files", self.delete_processed_files)
settings.beginGroup("file_transcription_options")
self.file_transcription_options.save(settings)
settings.endGroup()
@@ -29,6 +31,8 @@ class FolderWatchPreferences:
input_folder = settings.value("input_folder", defaultValue="", type=str)
output_folder = settings.value("output_directory", defaultValue="", type=str)
+ delete_value = settings.value("delete_processed_files", False)
+ delete_processed_files = False if delete_value == "false" else bool(delete_value)
settings.beginGroup("file_transcription_options")
file_transcription_options = FileTranscriptionPreferences.load(settings)
settings.endGroup()
@@ -37,4 +41,5 @@ class FolderWatchPreferences:
input_directory=input_folder,
output_directory=output_folder,
file_transcription_options=file_transcription_options,
+ delete_processed_files=delete_processed_files,
)
diff --git a/buzz/widgets/preferences_dialog/models_preferences_widget.py b/buzz/widgets/preferences_dialog/models_preferences_widget.py
index 479f58e6..1835453f 100644
--- a/buzz/widgets/preferences_dialog/models_preferences_widget.py
+++ b/buzz/widgets/preferences_dialog/models_preferences_widget.py
@@ -1,7 +1,7 @@
import logging
from typing import Optional
-from PyQt6.QtCore import Qt, QThreadPool
+from PyQt6.QtCore import Qt, QThreadPool, QLocale
from PyQt6.QtWidgets import (
QWidget,
QFormLayout,
@@ -40,6 +40,7 @@ class ModelsPreferencesWidget(QWidget):
super().__init__(parent)
self.settings = Settings()
+ self.ui_locale = self.settings.value(Settings.Key.UI_LOCALE, QLocale().name())
self.model_downloader: Optional[ModelDownloader] = None
model_types = [
@@ -182,6 +183,11 @@ class ModelsPreferencesWidget(QWidget):
model_size == WhisperModelSize.CUSTOM):
continue
+ # Skip LUMII size for all non Latvians
+ if (model_size == WhisperModelSize.LUMII and
+ (self.model.model_type != ModelType.WHISPER_CPP or self.ui_locale != "lv_LV")):
+ continue
+
model = TranscriptionModel(
model_type=self.model.model_type,
whisper_model_size=WhisperModelSize(model_size),
@@ -269,7 +275,8 @@ class ModelsPreferencesWidget(QWidget):
QMessageBox.warning(self, _("Error"), f"{download_failed_label}: {error}")
def on_download_progress(self, progress: tuple):
- self.progress_dialog.set_value(float(progress[0]) / progress[1])
+ if progress[1] != 0:
+ self.progress_dialog.set_value(float(progress[0]) / progress[1])
def on_progress_dialog_canceled(self):
self.model_downloader.cancel()
diff --git a/buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py b/buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
index e057d429..66395a64 100644
--- a/buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
+++ b/buzz/widgets/preferences_dialog/shortcuts_editor_preferences_widget.py
@@ -7,6 +7,7 @@ from PyQt6.QtWidgets import QWidget, QFormLayout, QPushButton
from buzz.locale import _
from buzz.settings.shortcut import Shortcut
from buzz.settings.shortcuts import Shortcuts
+from buzz.widgets.line_edit import LineEdit
from buzz.widgets.sequence_edit import SequenceEdit
@@ -19,8 +20,10 @@ class ShortcutsEditorPreferencesWidget(QWidget):
self.shortcuts = shortcuts
self.layout = QFormLayout(self)
+ _field_height = LineEdit().sizeHint().height()
for shortcut in Shortcut:
sequence_edit = SequenceEdit(shortcuts.get(shortcut), self)
+ sequence_edit.setFixedHeight(_field_height)
sequence_edit.keySequenceChanged.connect(
self.get_key_sequence_changed(shortcut)
)
diff --git a/buzz/widgets/presentation_window.py b/buzz/widgets/presentation_window.py
new file mode 100644
index 00000000..8aad5ee4
--- /dev/null
+++ b/buzz/widgets/presentation_window.py
@@ -0,0 +1,189 @@
+import logging
+from typing import Optional
+from PyQt6.QtCore import Qt
+from PyQt6.QtGui import QTextCursor
+from PyQt6.QtWidgets import QWidget, QVBoxLayout, QTextBrowser
+from platformdirs import user_cache_dir
+
+from buzz.locale import _
+from buzz.settings.settings import Settings
+
+import os
+
+class PresentationWindow(QWidget):
+ """Window for displaying live transcripts in presentation mode"""
+
+ def __init__(self, parent: Optional[QWidget] = None):
+ super().__init__(parent)
+
+ self.settings = Settings()
+ self._current_transcript = ""
+ self._current_translation = ""
+ self.window_style = ""
+ self.setWindowTitle(_("Live Transcript Presentation"))
+ self.setWindowFlag(Qt.WindowType.Window)
+
+ # Window size
+ self.resize(800, 600)
+
+ # Create layout
+ layout = QVBoxLayout(self)
+ layout.setContentsMargins(0, 0, 0, 0)
+ layout.setSpacing(0)
+
+ # Text display widget
+ self.transcript_display = QTextBrowser(self)
+ self.transcript_display.setReadOnly(True)
+
+ # Translation display (hidden first)
+ self.translation_display = QTextBrowser(self)
+ self.translation_display.setReadOnly(True)
+ self.translation_display.hide()
+
+ # Add to layout
+ layout.addWidget(self.transcript_display)
+ layout.addWidget(self.translation_display)
+
+ self.load_settings()
+
+ def load_settings(self):
+ """Load and apply saved presentation settings"""
+ theme = self.settings.value(
+ Settings.Key.PRESENTATION_WINDOW_THEME,
+ "light"
+ )
+
+ # Load text size
+ text_size = self.settings.value(
+ Settings.Key.PRESENTATION_WINDOW_TEXT_SIZE,
+ 24,
+ int
+ )
+
+ # Load colors based on theme
+ if theme == "light":
+ text_color = "#000000"
+ bg_color = "#FFFFFF"
+ elif theme == "dark":
+ text_color = "#FFFFFF"
+ bg_color = "#000000"
+ else:
+ text_color = self.settings.value(
+ Settings.Key.PRESENTATION_WINDOW_TEXT_COLOR,
+ "#000000"
+ )
+
+ bg_color = self.settings.value(
+ Settings.Key.PRESENTATION_WINDOW_BACKGROUND_COLOR,
+ "#FFFFFF"
+ )
+
+ self.apply_styling(text_color, bg_color, text_size)
+
+ # Refresh content with new styling
+ if self._current_transcript:
+ self.update_transcripts(self._current_transcript)
+ if self._current_translation:
+ self.update_translations(self._current_translation)
+
+ def apply_styling(self, text_color: str, bg_color: str, text_size: int):
+ """Apply text color, background color and font size"""
+
+ # Load custom CSS if it exists
+ css_file_path = self.get_css_file_path()
+
+ if os.path.exists(css_file_path):
+ try:
+ with open(css_file_path, "r", encoding="utf-8") as f:
+ self.window_style = f.read()
+ except Exception as e:
+ logging.warning(f"Failed to load custom CSS: {e}")
+ else:
+ self.window_style = f"""
+ body {{
+ color: {text_color};
+ background-color: {bg_color};
+ font-size: {text_size}pt;
+ font-family: Arial, sans-serif;
+ padding: 0;
+ margin: 20px;
+ }}
+ """
+
+ def update_transcripts(self, text: str):
+ """Update the transcript display with new text"""
+ if not text:
+ return
+
+ self._current_transcript = text
+ escaped_text = text.replace("&", "&").replace("<", "<").replace(">", ">")
+ html_text = escaped_text.replace("\n", " ")
+
+ html_content = f"""
+
+
+
+
+
+ {html_text}
+
+
+ """
+
+ self.transcript_display.setHtml(html_content)
+ self.transcript_display.moveCursor(QTextCursor.MoveOperation.End)
+
+ def update_translations(self, text: str):
+ """Update the translation display with new text"""
+ if not text:
+ return
+
+ self._current_translation = text
+ self.translation_display.show()
+
+ escaped_text = text.replace("&", "&").replace("<", "<").replace(">", ">")
+ html_text = escaped_text.replace("\n", " ")
+
+ html_content = f"""
+
+
+
+
+
+ {html_text}
+
+
+ """
+
+ self.translation_display.setHtml(html_content)
+ self.translation_display.moveCursor(QTextCursor.MoveOperation.End)
+
+ def toggle_fullscreen(self):
+ """Toggle fullscreen mode"""
+ if self.isFullScreen():
+ self.showNormal()
+ else:
+ self.showFullScreen()
+
+ def keyPressEvent(self, event):
+ """Handle keyboard events"""
+ # ESC Key exits fullscreen
+ if event.key() == Qt.Key.Key_Escape and self.isFullScreen():
+ self.showNormal()
+ event.accept()
+ else:
+ super().keyPressEvent(event)
+
+
+ def get_css_file_path(self) -> str:
+ """Get path to custom CSS file"""
+ cache_dir = user_cache_dir("Buzz")
+ os.makedirs(cache_dir, exist_ok=True)
+
+ return os.path.join(cache_dir, "presentation_window_style.css")
+
+
diff --git a/buzz/widgets/recording_transcriber_widget.py b/buzz/widgets/recording_transcriber_widget.py
index 5ef6863d..d0433631 100644
--- a/buzz/widgets/recording_transcriber_widget.py
+++ b/buzz/widgets/recording_transcriber_widget.py
@@ -1,15 +1,31 @@
+import csv
+import io
import os
import re
import enum
+import time
+import requests
import logging
import datetime
import sounddevice
from enum import auto
from typing import Optional, Tuple, Any
-from PyQt6.QtCore import QThread, Qt, QThreadPool
-from PyQt6.QtGui import QTextCursor, QCloseEvent
-from PyQt6.QtWidgets import QWidget, QVBoxLayout, QFormLayout, QHBoxLayout, QMessageBox
+from PyQt6.QtCore import QThread, Qt, QThreadPool, QTimer, pyqtSignal
+from PyQt6.QtGui import QTextCursor, QCloseEvent, QColor
+from PyQt6.QtWidgets import (
+ QWidget,
+ QVBoxLayout,
+ QFormLayout,
+ QHBoxLayout,
+ QMessageBox,
+ QApplication,
+ QPushButton,
+ QComboBox,
+ QLabel,
+ QSpinBox,
+ QColorDialog
+)
from buzz.dialogs import show_model_download_error_dialog
from buzz.locale import _
@@ -17,6 +33,7 @@ from buzz.model_loader import (
ModelDownloader,
TranscriptionModel,
ModelType,
+ WhisperModelSize
)
from buzz.store.keyring_store import get_password, Key
from buzz.recording import RecordingAmplitudeListener
@@ -25,7 +42,6 @@ from buzz.settings.recording_transcriber_mode import RecordingTranscriberMode
from buzz.transcriber.recording_transcriber import RecordingTranscriber
from buzz.transcriber.transcriber import (
TranscriptionOptions,
- DEFAULT_WHISPER_TEMPERATURE,
Task,
)
from buzz.translator import Translator
@@ -37,9 +53,11 @@ from buzz.widgets.text_display_box import TextDisplayBox
from buzz.widgets.transcriber.transcription_options_group_box import (
TranscriptionOptionsGroupBox,
)
+from buzz.widgets.presentation_window import PresentationWindow
+from buzz.widgets.icon import NewWindowIcon, FullscreenIcon, ColorBackgroundIcon, TextColorIcon
REAL_CHARS_REGEX = re.compile(r'\w')
-NO_SPACE_BETWEEN_SENTENCES = re.compile(r'([.!?])([A-Z])')
+NO_SPACE_BETWEEN_SENTENCES = re.compile(r'([.!?。!?])([A-Z])')
class RecordingTranscriberWidget(QWidget):
@@ -53,6 +71,8 @@ class RecordingTranscriberWidget(QWidget):
recording_amplitude_listener: Optional[RecordingAmplitudeListener] = None
device_sample_rate: Optional[int] = None
+ transcription_stopped = pyqtSignal()
+
class RecordingStatus(enum.Enum):
STOPPED = auto()
RECORDING = auto()
@@ -66,6 +86,8 @@ class RecordingTranscriberWidget(QWidget):
super().__init__(parent)
self.sounddevice = custom_sounddevice or sounddevice
+ self.upload_url = os.getenv("BUZZ_UPLOAD_URL", "")
+
if flags is not None:
self.setWindowFlags(flags)
@@ -116,10 +138,6 @@ class RecordingTranscriberWidget(QWidget):
initial_prompt=self.settings.value(
key=Settings.Key.RECORDING_TRANSCRIBER_INITIAL_PROMPT, default_value=""
),
- temperature=self.settings.value(
- key=Settings.Key.RECORDING_TRANSCRIBER_TEMPERATURE,
- default_value=DEFAULT_WHISPER_TEMPERATURE,
- ),
word_level_timings=False,
enable_llm_translation=self.settings.value(
key=Settings.Key.RECORDING_TRANSCRIBER_ENABLE_LLM_TRANSLATION,
@@ -131,6 +149,18 @@ class RecordingTranscriberWidget(QWidget):
llm_prompt=self.settings.value(
key=Settings.Key.RECORDING_TRANSCRIBER_LLM_PROMPT, default_value=""
),
+ silence_threshold=self.settings.value(
+ key=Settings.Key.RECORDING_TRANSCRIBER_SILENCE_THRESHOLD,
+ default_value=0.0025,
+ ),
+ line_separator=self.settings.value(
+ key=Settings.Key.RECORDING_TRANSCRIBER_LINE_SEPARATOR,
+ default_value="\n\n",
+ ),
+ transcription_step=self.settings.value(
+ key=Settings.Key.RECORDING_TRANSCRIBER_TRANSCRIPTION_STEP,
+ default_value=3.5,
+ ),
)
self.audio_devices_combo_box = AudioDevicesComboBox(self)
@@ -139,6 +169,7 @@ class RecordingTranscriberWidget(QWidget):
self.record_button = RecordButton(self)
self.record_button.clicked.connect(self.on_record_button_clicked)
+ self.reset_transcriber_controls()
self.transcription_text_box = TextDisplayBox(self)
self.transcription_text_box.setPlaceholderText(_("Click Record to begin..."))
@@ -150,18 +181,27 @@ class RecordingTranscriberWidget(QWidget):
default_transcription_options=self.transcription_options,
model_types=model_types,
parent=self,
+ show_recording_settings=True,
)
self.transcription_options_group_box.transcription_options_changed.connect(
self.on_transcription_options_changed
)
+ self.transcription_options_group_box.advanced_settings_dialog.recording_mode_changed.connect(
+ self.on_recording_mode_changed
+ )
+ self.transcription_options_group_box.advanced_settings_dialog.hide_unconfirmed_changed.connect(
+ self.on_hide_unconfirmed_changed
+ )
recording_options_layout = QFormLayout()
- recording_options_layout.addRow(_("Microphone:"), self.audio_devices_combo_box)
+ self.microphone_label = QLabel(_("Microphone:"))
+ recording_options_layout.addRow(self.microphone_label, self.audio_devices_combo_box)
self.audio_meter_widget = AudioMeterWidget(self)
record_button_layout = QHBoxLayout()
- record_button_layout.addWidget(self.audio_meter_widget)
+ record_button_layout.setContentsMargins(0, 4, 0, 8)
+ record_button_layout.addWidget(self.audio_meter_widget, alignment=Qt.AlignmentFlag.AlignVCenter)
record_button_layout.addWidget(self.record_button)
layout.addWidget(self.transcription_options_group_box)
@@ -174,17 +214,250 @@ class RecordingTranscriberWidget(QWidget):
self.translation_text_box.hide()
self.setLayout(layout)
- self.resize(450, 500)
+ self.resize(700, 600)
self.reset_recording_amplitude_listener()
+ self._closing = False
self.transcript_export_file = None
self.translation_export_file = None
+ self.export_file_type = "txt"
+ self.export_max_entries = 0
+ self.hide_unconfirmed = self.settings.value(
+ Settings.Key.RECORDING_TRANSCRIBER_HIDE_UNCONFIRMED, True
+ )
self.export_enabled = self.settings.value(
key=Settings.Key.RECORDING_TRANSCRIBER_EXPORT_ENABLED,
default_value=False,
)
+ #Presentation window
+ self.presentation_window: Optional[PresentationWindow] = None
+
+ self.presentation_options_bar = self.create_presentation_options_bar()
+ layout.insertWidget(3, self.presentation_options_bar)
+ self.presentation_options_bar.hide()
+ self.copy_actions_bar = self.create_copy_actions_bar()
+ layout.addWidget(self.copy_actions_bar) # Add at the bottom
+ self.copy_actions_bar.hide()
+
+ def create_presentation_options_bar(self) -> QWidget:
+ """Crete the presentation options bar widget"""
+
+ bar = QWidget(self)
+ layout = QHBoxLayout(bar)
+ layout.setContentsMargins(5, 5, 5, 5)
+ layout.setSpacing(10)
+
+ self.show_presentation_button = QPushButton(bar)
+ self.show_presentation_button.setIcon(NewWindowIcon(bar))
+ self.show_presentation_button.setToolTip(_("Show in new window"))
+ self.show_presentation_button.clicked.connect(self.on_show_presentation_clicked)
+ layout.addWidget(self.show_presentation_button)
+
+ layout.addStretch() #Push other controls to the right
+
+ text_size_label = QLabel(_("Text Size:"), bar)
+ layout.addWidget(text_size_label)
+
+ self.text_size_spinbox = QSpinBox(bar)
+ self.text_size_spinbox.setRange(10, 100) #10pt to 100pt
+
+ saved_text_size = self.settings.value(
+ Settings.Key.PRESENTATION_WINDOW_TEXT_SIZE,
+ 24,
+ int
+ )
+ self.text_size_spinbox.setValue(saved_text_size)
+ self.text_size_spinbox.valueChanged.connect(self.on_text_size_changed)
+ layout.addWidget(self.text_size_spinbox)
+
+ #Theme selector
+ theme_label = QLabel(_("Theme"), bar)
+ layout.addWidget(theme_label)
+
+ self.theme_combo = QComboBox(bar)
+ self.theme_combo.addItems([_("Light"), _("Dark"), _("Custom")])
+ #Load saved theme
+ saved_theme = self.settings.value(
+ Settings.Key.PRESENTATION_WINDOW_THEME,
+ "light"
+ )
+ theme_index = {"light": 0, "dark": 1, "custom": 2}.get(saved_theme, 0)
+ self.theme_combo.setCurrentIndex(theme_index)
+ self.theme_combo.currentIndexChanged.connect(self.on_theme_changed)
+ layout.addWidget(self.theme_combo)
+
+ #Color buttons hidden first, show when custom is selected
+ self.text_color_button = QPushButton(bar)
+ self.text_color_button.setIcon(TextColorIcon(bar))
+ self.text_color_button.setToolTip(_("Text Color"))
+ self.text_color_button.clicked.connect(self.on_text_color_clicked)
+ self.text_color_button.hide()
+
+ if saved_theme == "custom":
+ self.text_color_button.show()
+ layout.addWidget(self.text_color_button)
+
+ self.bg_color_button = QPushButton(bar)
+ self.bg_color_button.setIcon(ColorBackgroundIcon(bar))
+ self.bg_color_button.setToolTip(_("Background Color"))
+ self.bg_color_button.clicked.connect(self.on_bg_color_clicked)
+ self.bg_color_button.hide()
+ if saved_theme == "custom":
+ self.bg_color_button.show()
+ layout.addWidget(self.bg_color_button)
+
+ self.fullscreen_button = QPushButton(bar)
+ self.fullscreen_button.setIcon(FullscreenIcon(bar))
+ self.fullscreen_button.setToolTip(_("Fullscreen"))
+ self.fullscreen_button.clicked.connect(self.on_fullscreen_clicked)
+ self.fullscreen_button.setEnabled(False)
+ layout.addWidget(self.fullscreen_button)
+
+ return bar
+
+ def create_copy_actions_bar(self) -> QWidget:
+ """Create the copy actions bar widget"""
+ bar = QWidget(self)
+ layout = QHBoxLayout(bar)
+ layout.setContentsMargins(5, 5, 5, 5)
+ layout.setSpacing(10)
+
+ layout.addStretch() # Push button to the right
+
+ self.copy_transcript_button = QPushButton(_("Copy"), bar)
+ self.copy_transcript_button.setToolTip(_("Copy transcription to clipboard"))
+ self.copy_transcript_button.clicked.connect(self.on_copy_transcript_clicked)
+ layout.addWidget(self.copy_transcript_button)
+
+ return bar
+
+ def on_copy_transcript_clicked(self):
+ """Handle copy transcript button click"""
+ transcript_text = self.transcription_text_box.toPlainText().strip()
+
+ if not transcript_text:
+ self.copy_transcript_button.setText(_("Nothing to copy!"))
+ QTimer.singleShot(1500, lambda: self.copy_transcript_button.setText(_("Copy")))
+ return
+
+ app = QApplication.instance()
+ if app is None:
+ logging.warning("QApplication instance not available; clipboard disabled")
+ self.copy_transcript_button.setText(_("Copy failed"))
+ QTimer.singleShot(1500, lambda: self.copy_transcript_button.setText(_("Copy")))
+ return
+
+ clipboard = app.clipboard()
+ if clipboard is None:
+ logging.warning("Clipboard not available")
+ self.copy_transcript_button.setText(_("Copy failed"))
+ QTimer.singleShot(1500, lambda: self.copy_transcript_button.setText(_("Copy")))
+ return
+
+ try:
+ clipboard.setText(transcript_text)
+ except Exception as e:
+ logging.warning("Clipboard error: %s", e)
+ self.copy_transcript_button.setText(_("Copy failed"))
+ QTimer.singleShot(1500, lambda: self.copy_transcript_button.setText(_("Copy")))
+ return
+
+ self.copy_transcript_button.setText(_("Copied!"))
+ QTimer.singleShot(2000, lambda: self.copy_transcript_button.setText(_("Copy")))
+
+ def on_show_presentation_clicked(self):
+ """Handle click on 'Show in new window' button"""
+ if self.presentation_window is None or not self.presentation_window.isVisible():
+ #Create new presentation window
+ self.presentation_window = PresentationWindow(self)
+ self.presentation_window.show()
+
+ #Enable fullscreen button
+ self.fullscreen_button.setEnabled(True)
+
+ #Sync current content to presentation window
+ transcript_text = self.transcription_text_box.toPlainText()
+ if transcript_text:
+ self.presentation_window.update_transcripts(transcript_text)
+
+ if self.transcription_options.enable_llm_translation:
+ translation_text = self.translation_text_box.toPlainText()
+ if translation_text:
+ self.presentation_window.update_translations(translation_text)
+ else:
+ #Window already open, bring to front
+ self.presentation_window.raise_()
+ self.presentation_window.activateWindow()
+
+ def on_text_size_changed(self, value: int):
+ """Handle text size change"""
+ def save_settings():
+ self.settings.set_value(Settings.Key.PRESENTATION_WINDOW_TEXT_SIZE, value)
+ if self.presentation_window:
+ # reload setting to apply new size
+ self.presentation_window.load_settings()
+ #Incase user drags slider, Debounce by waiting 100ms before saving
+ QTimer.singleShot(100, save_settings)
+
+ def on_theme_changed(self, index: int):
+ """Handle theme selection change"""
+ theme = ["light", "dark", "custom"]
+ selected_theme = theme[index]
+ self.settings.set_value(Settings.Key.PRESENTATION_WINDOW_THEME, selected_theme)
+
+ #Show/hide color buttons based on selection
+ if selected_theme == "custom":
+ self.text_color_button.show()
+ self.bg_color_button.show()
+ else:
+ self.text_color_button.hide()
+ self.bg_color_button.hide()
+
+ # Apply theme to presentation window
+ if self.presentation_window:
+ self.presentation_window.load_settings()
+
+ def on_text_color_clicked(self):
+ """Handle text color button click"""
+
+ current_color = QColor(
+ self.settings.value(
+ Settings.Key.PRESENTATION_WINDOW_TEXT_COLOR,
+ "#000000"
+ )
+ )
+
+ color = QColorDialog.getColor(current_color, self, _("Select Text Color"))
+ if color.isValid():
+ color_hex = color.name()
+ self.settings.set_value(Settings.Key.PRESENTATION_WINDOW_TEXT_COLOR, color_hex)
+ if self.presentation_window:
+ self.presentation_window.load_settings()
+
+ def on_bg_color_clicked(self):
+ """Handle background color button click"""
+
+ current_color = QColor(
+ self.settings.value(
+ Settings.Key.PRESENTATION_WINDOW_BACKGROUND_COLOR,
+ "#FFFFFF"
+ )
+ )
+
+ color = QColorDialog.getColor(current_color, self, _("Select Background Color"))
+ if color.isValid():
+ color_hex = color.name()
+ self.settings.set_value(Settings.Key.PRESENTATION_WINDOW_BACKGROUND_COLOR, color_hex)
+ if self.presentation_window:
+ self.presentation_window.load_settings()
+
+ def on_fullscreen_clicked(self):
+ """Handle fullscreen button click"""
+ if self.presentation_window:
+ self.presentation_window.toggle_fullscreen()
+
def setup_for_export(self):
export_folder = self.settings.value(
key=Settings.Key.RECORDING_TRANSCRIBER_EXPORT_FOLDER,
@@ -193,7 +466,23 @@ class RecordingTranscriberWidget(QWidget):
date_time_now = datetime.datetime.now().strftime("%d-%b-%Y %H-%M-%S")
- export_file_name_template = Settings().get_default_export_file_template()
+ custom_template = self.settings.value(
+ key=Settings.Key.RECORDING_TRANSCRIBER_EXPORT_FILE_NAME,
+ default_value="",
+ )
+ export_file_name_template = custom_template if custom_template else Settings().get_default_export_file_template()
+
+ self.export_file_type = self.settings.value(
+ key=Settings.Key.RECORDING_TRANSCRIBER_EXPORT_FILE_TYPE,
+ default_value="txt",
+ )
+ self.export_max_entries = self.settings.value(
+ Settings.Key.RECORDING_TRANSCRIBER_EXPORT_MAX_ENTRIES, 0, int
+ )
+ self.hide_unconfirmed = self.settings.value(
+ Settings.Key.RECORDING_TRANSCRIBER_HIDE_UNCONFIRMED, True
+ )
+ ext = ".csv" if self.export_file_type == "csv" else ".txt"
export_file_name = (
export_file_name_template.replace("{{ input_file_name }}", "live recording")
@@ -202,14 +491,27 @@ class RecordingTranscriberWidget(QWidget):
.replace("{{ model_type }}", self.transcription_options.model.model_type.value)
.replace("{{ model_size }}", self.transcription_options.model.whisper_model_size or "")
.replace("{{ date_time }}", date_time_now)
- + ".txt"
+ + ext
)
+ translated_ext = ".translated" + ext
+
if not os.path.isdir(export_folder):
self.export_enabled = False
self.transcript_export_file = os.path.join(export_folder, export_file_name)
- self.translation_export_file = self.transcript_export_file.replace(".txt", ".translated.txt")
+ self.translation_export_file = self.transcript_export_file.replace(ext, translated_ext)
+
+ # Clear export files at the start of each recording session
+ for path in (self.transcript_export_file, self.translation_export_file):
+ if os.path.isfile(path):
+ self.write_to_export_file(path, "", mode="w")
+
+ def on_recording_mode_changed(self, mode: RecordingTranscriberMode):
+ self.transcriber_mode = mode
+
+ def on_hide_unconfirmed_changed(self, value: bool):
+ self.hide_unconfirmed = value
def on_transcription_options_changed(
self, transcription_options: TranscriptionOptions
@@ -221,6 +523,21 @@ class RecordingTranscriberWidget(QWidget):
else:
self.translation_text_box.hide()
+ self.reset_transcriber_controls()
+
+ def reset_transcriber_controls(self):
+ button_enabled = True
+ if (self.transcription_options.model.model_type == ModelType.FASTER_WHISPER
+ and self.transcription_options.model.whisper_model_size == WhisperModelSize.CUSTOM
+ and self.transcription_options.model.hugging_face_model_id == ""):
+ button_enabled = False
+
+ if (self.transcription_options.model.model_type == ModelType.HUGGING_FACE
+ and self.transcription_options.model.hugging_face_model_id == ""):
+ button_enabled = False
+
+ self.record_button.setEnabled(button_enabled)
+
def on_device_changed(self, device_id: int):
self.selected_device_id = device_id
self.reset_recording_amplitude_listener()
@@ -245,24 +562,49 @@ class RecordingTranscriberWidget(QWidget):
input_device_index=self.selected_device_id, parent=self
)
self.recording_amplitude_listener.amplitude_changed.connect(
- self.on_recording_amplitude_changed
+ self.on_recording_amplitude_changed, Qt.ConnectionType.QueuedConnection
+ )
+ self.recording_amplitude_listener.average_amplitude_changed.connect(
+ self.audio_meter_widget.update_average_amplitude, Qt.ConnectionType.QueuedConnection
)
self.recording_amplitude_listener.start_recording()
def on_record_button_clicked(self):
if self.current_status == self.RecordingStatus.STOPPED:
+ # Stop amplitude listener and disconnect its signal before resetting
+ # to prevent queued amplitude events from overriding the reset
+ if self.recording_amplitude_listener is not None:
+ self.recording_amplitude_listener.amplitude_changed.disconnect(
+ self.on_recording_amplitude_changed
+ )
+ self.recording_amplitude_listener.average_amplitude_changed.disconnect(
+ self.audio_meter_widget.update_average_amplitude
+ )
+ self.recording_amplitude_listener.stop_recording()
+ self.recording_amplitude_listener = None
+ self.audio_meter_widget.reset_amplitude()
self.start_recording()
self.current_status = self.RecordingStatus.RECORDING
self.record_button.set_recording()
+ self.transcription_options_group_box.setEnabled(False)
+ self.audio_devices_combo_box.setEnabled(False)
+ self.microphone_label.setEnabled(False)
+ self.presentation_options_bar.show()
+ self.copy_actions_bar.hide()
+
else: # RecordingStatus.RECORDING
self.stop_recording()
self.set_recording_status_stopped()
+ self.presentation_options_bar.hide()
def start_recording(self):
self.record_button.setDisabled(True)
self.transcripts = []
self.translations = []
+ self.transcription_text_box.clear()
+ self.translation_text_box.clear()
+
if self.export_enabled:
self.setup_for_export()
@@ -281,9 +623,13 @@ class RecordingTranscriberWidget(QWidget):
self.reset_recording_controls()
self.model_loader = None
+ if model_path == "" and self.transcription_options.model.model_type != ModelType.OPEN_AI_WHISPER_API:
+ self.on_transcriber_error("")
+ logging.error("Model path is empty, cannot start recording.")
+ return
+
self.transcription_thread = QThread()
- # TODO: make runnable
self.transcriber = RecordingTranscriber(
input_device_index=self.selected_device_id,
sample_rate=self.device_sample_rate,
@@ -300,6 +646,19 @@ class RecordingTranscriberWidget(QWidget):
)
self.transcriber.transcription.connect(self.on_next_transcription)
+ self.transcriber.amplitude_changed.connect(
+ self.on_recording_amplitude_changed, Qt.ConnectionType.QueuedConnection
+ )
+ self.transcriber.average_amplitude_changed.connect(
+ self.audio_meter_widget.update_average_amplitude, Qt.ConnectionType.QueuedConnection
+ )
+ self.transcriber.queue_size_changed.connect(
+ self.audio_meter_widget.update_queue_size, Qt.ConnectionType.QueuedConnection
+ )
+
+ # Stop the separate amplitude listener to avoid two streams on the same device
+ if self.recording_amplitude_listener is not None:
+ self.recording_amplitude_listener.stop_recording()
self.transcriber.finished.connect(self.on_transcriber_finished)
self.transcriber.finished.connect(self.transcription_thread.quit)
@@ -323,9 +682,15 @@ class RecordingTranscriberWidget(QWidget):
self.translation_thread.finished.connect(
self.translation_thread.deleteLater
)
+ self.translation_thread.finished.connect(
+ lambda: setattr(self, "translation_thread", None)
+ )
self.translator.finished.connect(self.translation_thread.quit)
self.translator.finished.connect(self.translator.deleteLater)
+ self.translator.finished.connect(
+ lambda: setattr(self, "translator", None)
+ )
self.translator.translation.connect(self.on_next_translation)
@@ -344,7 +709,7 @@ class RecordingTranscriberWidget(QWidget):
self.on_cancel_model_progress_dialog
)
- if self.model_download_progress_dialog is not None:
+ if self.model_download_progress_dialog is not None and total_size > 0:
self.model_download_progress_dialog.set_value(
fraction_completed=current_size / total_size
)
@@ -352,12 +717,18 @@ class RecordingTranscriberWidget(QWidget):
def set_recording_status_stopped(self):
self.record_button.set_stopped()
self.current_status = self.RecordingStatus.STOPPED
+ self.transcription_options_group_box.setEnabled(True)
+ self.audio_devices_combo_box.setEnabled(True)
+ self.microphone_label.setEnabled(True)
+ self.presentation_options_bar.hide()
+ self.copy_actions_bar.show() #added this here
def on_download_model_error(self, error: str):
self.reset_model_download()
show_model_download_error_dialog(self, error)
self.stop_recording()
self.set_recording_status_stopped()
+ self.reset_recording_amplitude_listener()
self.record_button.setDisabled(False)
@staticmethod
@@ -373,6 +744,102 @@ class RecordingTranscriberWidget(QWidget):
return text
+ @staticmethod
+ def write_to_export_file(file_path: str, content: str, mode: str = "a", retries: int = 5, delay: float = 0.2):
+ """Write to an export file with retry logic for Windows file locking."""
+ for attempt in range(retries):
+ try:
+ with open(file_path, mode, encoding='utf-8') as f:
+ f.write(content)
+ return
+ except PermissionError:
+ if attempt < retries - 1:
+ time.sleep(delay)
+ else:
+ logging.warning("Export write failed after %d retries: %s", retries, file_path)
+ except OSError as e:
+ logging.warning("Export write failed: %s", e)
+ return
+
+ @staticmethod
+ def write_csv_export(file_path: str, text: str, max_entries: int):
+ """Append a new column to a single-row CSV export file, applying max_entries limit."""
+ existing_columns = []
+ if os.path.isfile(file_path):
+ try:
+ with open(file_path, "r", encoding="utf-8-sig") as f:
+ raw = f.read()
+ if raw.strip():
+ reader = csv.reader(io.StringIO(raw))
+ for row in reader:
+ existing_columns = row
+ break
+ except OSError:
+ pass
+ existing_columns.append(text)
+ if max_entries > 0:
+ existing_columns = existing_columns[-max_entries:]
+ buf = io.StringIO()
+ writer = csv.writer(buf)
+ writer.writerow(existing_columns)
+ for attempt in range(5):
+ try:
+ with open(file_path, "w", encoding='utf-8-sig') as f:
+ f.write(buf.getvalue())
+ return
+ except PermissionError:
+ if attempt < 4:
+ time.sleep(0.2)
+ else:
+ logging.warning("CSV export write failed after retries: %s", file_path)
+ except OSError as e:
+ logging.warning("CSV export write failed: %s", e)
+ return
+
+ @staticmethod
+ def write_txt_export(file_path: str, text: str, mode: str, max_entries: int, line_separator: str):
+ """Write to a TXT export file, applying max_entries limit when needed."""
+ if mode == "a":
+ RecordingTranscriberWidget.write_to_export_file(file_path, text + line_separator)
+ if max_entries > 0 and os.path.isfile(file_path):
+ raw = RecordingTranscriberWidget.read_export_file(file_path)
+ parts = [p for p in raw.split(line_separator) if p]
+ if len(parts) > max_entries:
+ parts = parts[-max_entries:]
+ RecordingTranscriberWidget.write_to_export_file(
+ file_path, line_separator.join(parts) + line_separator, mode="w"
+ )
+ elif mode == "prepend":
+ existing_content = ""
+ if os.path.isfile(file_path):
+ existing_content = RecordingTranscriberWidget.read_export_file(file_path)
+ new_content = text + line_separator + existing_content
+ if max_entries > 0:
+ parts = [p for p in new_content.split(line_separator) if p]
+ if len(parts) > max_entries:
+ parts = parts[:max_entries]
+ new_content = line_separator.join(parts) + line_separator
+ RecordingTranscriberWidget.write_to_export_file(file_path, new_content, mode="w")
+ else:
+ RecordingTranscriberWidget.write_to_export_file(file_path, text, mode=mode)
+
+ @staticmethod
+ def read_export_file(file_path: str, retries: int = 5, delay: float = 0.2) -> str:
+ """Read an export file with retry logic for Windows file locking."""
+ for attempt in range(retries):
+ try:
+ with open(file_path, "r", encoding='utf-8') as f:
+ return f.read()
+ except PermissionError:
+ if attempt < retries - 1:
+ time.sleep(delay)
+ else:
+ logging.warning("Export read failed after %d retries: %s", retries, file_path)
+ except OSError as e:
+ logging.warning("Export read failed: %s", e)
+ return ""
+ return ""
+
# Copilot magic implementation of a sliding window approach to find the longest common substring between two texts,
# ignoring the initial differences.
@staticmethod
@@ -409,16 +876,36 @@ class RecordingTranscriberWidget(QWidget):
def process_transcription_merge(self, text: str, texts, text_box, export_file):
texts.append(text)
+ # Possibly in future we want to tie this to some setting, to limit amount of data that needs
+ # to be processed and exported. Value should not be less than ~10, so we have enough data to
+ # work with.
+ # if len(texts) > 20:
+ # del texts[:len(texts) - 20]
+
# Remove possibly errorous parts from overlapping audio chunks
+ last_common_length = None
for i in range(len(texts) - 1):
common_part = self.find_common_part(texts[i], texts[i + 1])
if common_part:
common_length = len(common_part)
texts[i] = texts[i][:texts[i].rfind(common_part) + common_length]
texts[i + 1] = texts[i + 1][texts[i + 1].find(common_part):]
+ if i == len(texts) - 2:
+ last_common_length = common_length
+ elif i == len(texts) - 2:
+ last_common_length = None
+
+ # When hiding unconfirmed: trim the last text to only the part confirmed by overlap
+ # with the previous chunk. If no overlap found, drop the last text entirely.
+ display_texts = list(texts)
+ if self.hide_unconfirmed and len(display_texts) > 1:
+ if last_common_length is not None:
+ display_texts[-1] = display_texts[-1][:last_common_length]
+ else:
+ display_texts = display_texts[:-1]
merged_texts = ""
- for text in texts:
+ for text in display_texts:
merged_texts = self.merge_text_no_overlap(merged_texts, text)
merged_texts = NO_SPACE_BETWEEN_SENTENCES.sub(r'\1 \2', merged_texts)
@@ -426,9 +913,13 @@ class RecordingTranscriberWidget(QWidget):
text_box.setPlainText(merged_texts)
text_box.moveCursor(QTextCursor.MoveOperation.End)
- if self.export_enabled:
- with open(export_file, "w") as f:
- f.write(merged_texts)
+ if self.export_enabled and export_file:
+ if self.export_file_type == "csv":
+ # For APPEND_AND_CORRECT mode, rewrite the whole CSV with all merged text as a single entry
+ self.write_to_export_file(export_file, "", mode="w")
+ self.write_csv_export(export_file, merged_texts, 0)
+ else:
+ self.write_to_export_file(export_file, merged_texts, mode="w")
def on_next_transcription(self, text: str):
text = self.filter_text(text)
@@ -442,32 +933,64 @@ class RecordingTranscriberWidget(QWidget):
if self.transcriber_mode == RecordingTranscriberMode.APPEND_BELOW:
self.transcription_text_box.moveCursor(QTextCursor.MoveOperation.End)
if len(self.transcription_text_box.toPlainText()) > 0:
- self.transcription_text_box.insertPlainText("\n\n")
+ self.transcription_text_box.insertPlainText(self.transcription_options.line_separator)
self.transcription_text_box.insertPlainText(text)
self.transcription_text_box.moveCursor(QTextCursor.MoveOperation.End)
- if self.export_enabled:
- with open(self.transcript_export_file, "a") as f:
- f.write(text + "\n\n")
+ if self.export_enabled and self.transcript_export_file:
+ if self.export_file_type == "csv":
+ self.write_csv_export(self.transcript_export_file, text, self.export_max_entries)
+ else:
+ self.write_txt_export(self.transcript_export_file, text, "a", self.export_max_entries, self.transcription_options.line_separator)
elif self.transcriber_mode == RecordingTranscriberMode.APPEND_ABOVE:
self.transcription_text_box.moveCursor(QTextCursor.MoveOperation.Start)
self.transcription_text_box.insertPlainText(text)
- self.transcription_text_box.insertPlainText("\n\n")
+ self.transcription_text_box.insertPlainText(self.transcription_options.line_separator)
self.transcription_text_box.moveCursor(QTextCursor.MoveOperation.Start)
- if self.export_enabled:
- with open(self.transcript_export_file, "r") as f:
- existing_content = f.read()
-
- new_content = text + "\n\n" + existing_content
-
- with open(self.transcript_export_file, "w") as f:
- f.write(new_content)
+ if self.export_enabled and self.transcript_export_file:
+ if self.export_file_type == "csv":
+ # For APPEND_ABOVE, prepend in CSV means inserting at beginning of columns
+ existing_columns = []
+ if os.path.isfile(self.transcript_export_file):
+ raw = self.read_export_file(self.transcript_export_file)
+ if raw.strip():
+ reader = csv.reader(io.StringIO(raw))
+ for row in reader:
+ existing_columns = row
+ break
+ new_columns = [text] + existing_columns
+ if self.export_max_entries > 0:
+ new_columns = new_columns[:self.export_max_entries]
+ buf = io.StringIO()
+ writer = csv.writer(buf)
+ writer.writerow(new_columns)
+ self.write_to_export_file(self.transcript_export_file, buf.getvalue(), mode="w")
+ else:
+ self.write_txt_export(self.transcript_export_file, text, "prepend", self.export_max_entries, self.transcription_options.line_separator)
elif self.transcriber_mode == RecordingTranscriberMode.APPEND_AND_CORRECT:
self.process_transcription_merge(text, self.transcripts, self.transcription_text_box, self.transcript_export_file)
+ #Update presentation window if it is open
+ if self.presentation_window and self.presentation_window.isVisible():
+ #Get current merged text from the translation box
+ current_text = self.transcription_text_box.toPlainText()
+ self.presentation_window.update_transcripts(current_text)
+
+ # Upload to server
+ if self.upload_url:
+ try:
+ requests.post(
+ url=self.upload_url,
+ json={"kind": "transcript", "text": text},
+ headers={'Content-Type': 'application/json'},
+ timeout=15
+ )
+ except Exception as e:
+ logging.error(f"Transcript upload failed: {str(e)}")
+
def on_next_translation(self, text: str, _: Optional[int] = None):
if len(text) == 0:
return
@@ -475,32 +998,61 @@ class RecordingTranscriberWidget(QWidget):
if self.transcriber_mode == RecordingTranscriberMode.APPEND_BELOW:
self.translation_text_box.moveCursor(QTextCursor.MoveOperation.End)
if len(self.translation_text_box.toPlainText()) > 0:
- self.translation_text_box.insertPlainText("\n\n")
+ self.translation_text_box.insertPlainText(self.transcription_options.line_separator)
self.translation_text_box.insertPlainText(self.strip_newlines(text))
self.translation_text_box.moveCursor(QTextCursor.MoveOperation.End)
- if self.export_enabled:
- with open(self.translation_export_file, "a") as f:
- f.write(text + "\n\n")
+ if self.export_enabled and self.translation_export_file:
+ if self.export_file_type == "csv":
+ self.write_csv_export(self.translation_export_file, text, self.export_max_entries)
+ else:
+ self.write_txt_export(self.translation_export_file, text, "a", self.export_max_entries, self.transcription_options.line_separator)
elif self.transcriber_mode == RecordingTranscriberMode.APPEND_ABOVE:
self.translation_text_box.moveCursor(QTextCursor.MoveOperation.Start)
self.translation_text_box.insertPlainText(self.strip_newlines(text))
- self.translation_text_box.insertPlainText("\n\n")
+ self.translation_text_box.insertPlainText(self.transcription_options.line_separator)
self.translation_text_box.moveCursor(QTextCursor.MoveOperation.Start)
- if self.export_enabled:
- with open(self.translation_export_file, "r") as f:
- existing_content = f.read()
-
- new_content = text + "\n\n" + existing_content
-
- with open(self.translation_export_file, "w") as f:
- f.write(new_content)
+ if self.export_enabled and self.translation_export_file:
+ if self.export_file_type == "csv":
+ existing_columns = []
+ if os.path.isfile(self.translation_export_file):
+ raw = self.read_export_file(self.translation_export_file)
+ if raw.strip():
+ reader = csv.reader(io.StringIO(raw))
+ for row in reader:
+ existing_columns = row
+ break
+ new_columns = [text] + existing_columns
+ if self.export_max_entries > 0:
+ new_columns = new_columns[:self.export_max_entries]
+ buf = io.StringIO()
+ writer = csv.writer(buf)
+ writer.writerow(new_columns)
+ self.write_to_export_file(self.translation_export_file, buf.getvalue(), mode="w")
+ else:
+ self.write_txt_export(self.translation_export_file, text, "prepend", self.export_max_entries, self.transcription_options.line_separator)
elif self.transcriber_mode == RecordingTranscriberMode.APPEND_AND_CORRECT:
self.process_transcription_merge(text, self.translations, self.translation_text_box, self.translation_export_file)
+ if self.presentation_window and self.presentation_window.isVisible():
+ current_translation = self.translation_text_box.toPlainText()
+ self.presentation_window.update_translations(current_translation)
+
+ # Upload to server
+ if self.upload_url:
+ try:
+ requests.post(
+ url=self.upload_url,
+ json={"kind": "translation", "text": text},
+ headers={'Content-Type': 'application/json'},
+ timeout=15
+ )
+ except Exception as e:
+ logging.error(f"Translation upload failed: {str(e)}")
+
def stop_recording(self):
if self.transcriber is not None:
self.transcriber.stop_recording()
@@ -513,10 +1065,14 @@ class RecordingTranscriberWidget(QWidget):
def on_transcriber_finished(self):
self.reset_record_button()
+ # Restart amplitude listener now that the transcription stream is closed
+ self.reset_recording_amplitude_listener()
+ self.transcription_stopped.emit()
def on_transcriber_error(self, error: str):
self.reset_record_button()
self.set_recording_status_stopped()
+ self.reset_recording_amplitude_listener()
QMessageBox.critical(
self,
"",
@@ -533,6 +1089,7 @@ class RecordingTranscriberWidget(QWidget):
self.model_loader.cancel()
self.reset_model_download()
self.set_recording_status_stopped()
+ self.reset_recording_amplitude_listener()
self.record_button.setDisabled(False)
def reset_model_download(self):
@@ -556,10 +1113,51 @@ class RecordingTranscriberWidget(QWidget):
self.audio_meter_widget.update_amplitude(amplitude)
def closeEvent(self, event: QCloseEvent) -> None:
- if self.model_loader is not None:
- self.model_loader.cancel()
+ if self._closing:
+ # Second call after deferred close — proceed normally
+ self._do_close()
+ super().closeEvent(event)
+ return
+
+ if self.current_status == self.RecordingStatus.RECORDING:
+ # Defer the close until the transcription thread finishes to avoid
+ # blocking the GUI thread with a synchronous wait.
+ event.ignore()
+ self._closing = True
+
+ if self.model_loader is not None:
+ self.model_loader.cancel()
+
+ self.stop_recording()
+
+ # Connect to QThread.finished — the transcriber C++ object may already
+ # be scheduled for deletion via deleteLater() by this point.
+ thread = self.transcription_thread
+ if thread is not None:
+ try:
+ if thread.isRunning():
+ thread.finished.connect(self._on_close_transcriber_finished)
+ else:
+ self._on_close_transcriber_finished()
+ except RuntimeError:
+ self._on_close_transcriber_finished()
+ else:
+ self._on_close_transcriber_finished()
+ return
+
+ self._do_close()
+ super().closeEvent(event)
+
+ def _on_close_transcriber_finished(self):
+ self.transcription_thread = None
+ self.close()
+
+ def _do_close(self):
+ #Close presentation window if open
+ if self.presentation_window:
+ self.presentation_window.close()
+ self.presentation_window = None
- self.stop_recording()
if self.recording_amplitude_listener is not None:
self.recording_amplitude_listener.stop_recording()
self.recording_amplitude_listener.deleteLater()
@@ -568,6 +1166,10 @@ class RecordingTranscriberWidget(QWidget):
if self.translator is not None:
self.translator.stop()
+ if self.translation_thread is not None:
+ # Just request quit — do not block the GUI thread waiting for it
+ self.translation_thread.quit()
+
self.settings.set_value(
Settings.Key.RECORDING_TRANSCRIBER_LANGUAGE,
self.transcription_options.language,
@@ -575,10 +1177,6 @@ class RecordingTranscriberWidget(QWidget):
self.settings.set_value(
Settings.Key.RECORDING_TRANSCRIBER_TASK, self.transcription_options.task
)
- self.settings.set_value(
- Settings.Key.RECORDING_TRANSCRIBER_TEMPERATURE,
- self.transcription_options.temperature,
- )
self.settings.set_value(
Settings.Key.RECORDING_TRANSCRIBER_INITIAL_PROMPT,
self.transcription_options.initial_prompt,
@@ -598,5 +1196,15 @@ class RecordingTranscriberWidget(QWidget):
Settings.Key.RECORDING_TRANSCRIBER_LLM_PROMPT,
self.transcription_options.llm_prompt,
)
-
- return super().closeEvent(event)
+ self.settings.set_value(
+ Settings.Key.RECORDING_TRANSCRIBER_SILENCE_THRESHOLD,
+ self.transcription_options.silence_threshold,
+ )
+ self.settings.set_value(
+ Settings.Key.RECORDING_TRANSCRIBER_LINE_SEPARATOR,
+ self.transcription_options.line_separator,
+ )
+ self.settings.set_value(
+ Settings.Key.RECORDING_TRANSCRIBER_TRANSCRIPTION_STEP,
+ self.transcription_options.transcription_step,
+ )
diff --git a/buzz/widgets/snap_notice.py b/buzz/widgets/snap_notice.py
deleted file mode 100644
index 2ef4302b..00000000
--- a/buzz/widgets/snap_notice.py
+++ /dev/null
@@ -1,32 +0,0 @@
-from PyQt6.QtWidgets import QDialog, QVBoxLayout, QTextEdit, QLabel, QPushButton
-from buzz.locale import _
-
-
-class SnapNotice(QDialog):
- def __init__(self, parent=None):
- super().__init__(parent)
-
- self.setWindowTitle(_("Snap permission notice"))
-
- self.layout = QVBoxLayout(self)
-
- self.notice_label = QLabel(_("Detected missing permissions, please check that snap permissions have been granted"))
- self.layout.addWidget(self.notice_label)
-
- self.instruction_label = QLabel(_("To enable necessary permissions run the following commands in the terminal"))
- self.layout.addWidget(self.instruction_label)
-
- self.text_edit = QTextEdit(self)
- self.text_edit.setPlainText(
- "sudo snap connect buzz:audio-record\n"
- "sudo snap connect buzz:password-manager-service\n"
- "sudo snap connect buzz:pulseaudio\n"
- "sudo snap connect buzz:removable-media"
- )
- self.text_edit.setReadOnly(True)
- self.text_edit.setFixedHeight(80)
- self.layout.addWidget(self.text_edit)
-
- self.button = QPushButton(_("Close"), self)
- self.button.clicked.connect(self.close)
- self.layout.addWidget(self.button)
\ No newline at end of file
diff --git a/buzz/widgets/transcriber/advanced_settings_dialog.py b/buzz/widgets/transcriber/advanced_settings_dialog.py
index 765df682..a9e1a954 100644
--- a/buzz/widgets/transcriber/advanced_settings_dialog.py
+++ b/buzz/widgets/transcriber/advanced_settings_dialog.py
@@ -7,23 +7,34 @@ from PyQt6.QtWidgets import (
QPlainTextEdit,
QFormLayout,
QLabel,
+ QDoubleSpinBox,
+ QLineEdit,
+ QComboBox,
+ QHBoxLayout,
+ QPushButton,
+ QSpinBox,
+ QFileDialog,
)
from buzz.locale import _
-from buzz.model_loader import ModelType
from buzz.transcriber.transcriber import TranscriptionOptions
from buzz.settings.settings import Settings
+from buzz.settings.recording_transcriber_mode import RecordingTranscriberMode
from buzz.widgets.line_edit import LineEdit
from buzz.widgets.transcriber.initial_prompt_text_edit import InitialPromptTextEdit
-from buzz.widgets.transcriber.temperature_validator import TemperatureValidator
class AdvancedSettingsDialog(QDialog):
transcription_options: TranscriptionOptions
transcription_options_changed = pyqtSignal(TranscriptionOptions)
+ recording_mode_changed = pyqtSignal(RecordingTranscriberMode)
+ hide_unconfirmed_changed = pyqtSignal(bool)
def __init__(
- self, transcription_options: TranscriptionOptions, parent: QWidget | None = None
+ self,
+ transcription_options: TranscriptionOptions,
+ parent: QWidget | None = None,
+ show_recording_settings: bool = False,
):
super().__init__(parent)
@@ -31,29 +42,15 @@ class AdvancedSettingsDialog(QDialog):
self.settings = Settings()
self.setWindowTitle(_("Advanced Settings"))
+ self.setMinimumWidth(800)
layout = QFormLayout(self)
+ layout.setFieldGrowthPolicy(QFormLayout.FieldGrowthPolicy.ExpandingFieldsGrow)
transcription_settings_title= _("Speech recognition settings")
transcription_settings_title_label = QLabel(f"
{transcription_settings_title}
", self)
layout.addRow("", transcription_settings_title_label)
- default_temperature_text = ", ".join(
- [str(temp) for temp in transcription_options.temperature]
- )
- self.temperature_line_edit = LineEdit(default_temperature_text, self)
- self.temperature_line_edit.setPlaceholderText(
- _('Comma-separated, e.g. "0.0, 0.2, 0.4, 0.6, 0.8, 1.0"')
- )
- self.temperature_line_edit.setMinimumWidth(170)
- self.temperature_line_edit.textChanged.connect(self.on_temperature_changed)
- self.temperature_line_edit.setValidator(TemperatureValidator(self))
- self.temperature_line_edit.setEnabled(
- transcription_options.model.model_type == ModelType.WHISPER
- )
-
- layout.addRow(_("Temperature:"), self.temperature_line_edit)
-
self.initial_prompt_text_edit = InitialPromptTextEdit(
transcription_options.initial_prompt,
transcription_options.model.model_type,
@@ -74,22 +71,160 @@ class AdvancedSettingsDialog(QDialog):
self.enable_llm_translation_checkbox.stateChanged.connect(self.on_enable_llm_translation_changed)
layout.addRow("", self.enable_llm_translation_checkbox)
- self.llm_model_line_edit = LineEdit(self.transcription_options.llm_model, self)
- self.llm_model_line_edit.textChanged.connect(
- self.on_llm_model_changed
- )
+ llm_model = self.transcription_options.llm_model or "gpt-4.1-mini"
+ self.llm_model_line_edit = LineEdit(llm_model, self)
+ self.llm_model_line_edit.textChanged.connect(self.on_llm_model_changed)
self.llm_model_line_edit.setMinimumWidth(170)
self.llm_model_line_edit.setEnabled(self.transcription_options.enable_llm_translation)
- self.llm_model_line_edit.setPlaceholderText("gpt-3.5-turbo")
- layout.addRow(_("AI model:"), self.llm_model_line_edit)
+ self.llm_model_label = QLabel(_("AI model:"))
+ self.llm_model_label.setEnabled(self.transcription_options.enable_llm_translation)
+ layout.addRow(self.llm_model_label, self.llm_model_line_edit)
- self.llm_prompt_text_edit = QPlainTextEdit(self.transcription_options.llm_prompt)
+ default_llm_prompt = self.transcription_options.llm_prompt or _(
+ "Please translate each text sent to you from English to Spanish. Translation will be used in an automated system, please do not add any comments or notes, just the translation."
+ )
+ self.llm_prompt_text_edit = QPlainTextEdit(default_llm_prompt)
self.llm_prompt_text_edit.setEnabled(self.transcription_options.enable_llm_translation)
- self.llm_prompt_text_edit.setPlaceholderText(_("Enter instructions for AI on how to translate..."))
self.llm_prompt_text_edit.setMinimumWidth(170)
- self.llm_prompt_text_edit.setFixedHeight(115)
+ self.llm_prompt_text_edit.setFixedHeight(80)
self.llm_prompt_text_edit.textChanged.connect(self.on_llm_prompt_changed)
- layout.addRow(_("Instructions for AI:"), self.llm_prompt_text_edit)
+ self.llm_prompt_label = QLabel(_("Instructions for AI:"))
+ self.llm_prompt_label.setEnabled(self.transcription_options.enable_llm_translation)
+ layout.addRow(self.llm_prompt_label, self.llm_prompt_text_edit)
+
+ if show_recording_settings:
+ recording_settings_title = _("Recording settings")
+ recording_settings_title_label = QLabel(f"
{recording_settings_title}
", self)
+ layout.addRow("", recording_settings_title_label)
+
+ self.silence_threshold_spin_box = QDoubleSpinBox(self)
+ self.silence_threshold_spin_box.setRange(0.0, 1.0)
+ self.silence_threshold_spin_box.setSingleStep(0.0005)
+ self.silence_threshold_spin_box.setDecimals(4)
+ self.silence_threshold_spin_box.setValue(transcription_options.silence_threshold)
+ self.silence_threshold_spin_box.valueChanged.connect(self.on_silence_threshold_changed)
+ self.silence_threshold_spin_box.setFixedWidth(90)
+ layout.addRow(_("Silence threshold:"), self.silence_threshold_spin_box)
+
+ # Live recording mode
+ self.recording_mode_combo = QComboBox(self)
+ for mode in RecordingTranscriberMode:
+ self.recording_mode_combo.addItem(mode.value)
+ self.recording_mode_combo.setCurrentIndex(
+ self.settings.value(Settings.Key.RECORDING_TRANSCRIBER_MODE, 0)
+ )
+ self.recording_mode_combo.currentIndexChanged.connect(self.on_recording_mode_changed)
+ self.recording_mode_combo.setFixedWidth(250)
+ layout.addRow(_("Live recording mode") + ":", self.recording_mode_combo)
+
+ self.line_separator_line_edit = QLineEdit(self)
+ line_sep_display = repr(transcription_options.line_separator)[1:-1] or r"\n\n"
+ self.line_separator_line_edit.setText(line_sep_display)
+ self.line_separator_line_edit.textChanged.connect(self.on_line_separator_changed)
+ self.line_separator_label = QLabel(_("Line separator:"))
+ layout.addRow(self.line_separator_label, self.line_separator_line_edit)
+
+ self.transcription_step_spin_box = QDoubleSpinBox(self)
+ self.transcription_step_spin_box.setRange(2.0, 5.0)
+ self.transcription_step_spin_box.setSingleStep(0.1)
+ self.transcription_step_spin_box.setDecimals(1)
+ self.transcription_step_spin_box.setValue(transcription_options.transcription_step)
+ self.transcription_step_spin_box.valueChanged.connect(self.on_transcription_step_changed)
+ self.transcription_step_spin_box.setFixedWidth(80)
+ self.transcription_step_label = QLabel(_("Transcription step:"))
+ layout.addRow(self.transcription_step_label, self.transcription_step_spin_box)
+
+ hide_unconfirmed = self.settings.value(
+ Settings.Key.RECORDING_TRANSCRIBER_HIDE_UNCONFIRMED, True
+ )
+ self.hide_unconfirmed_checkbox = QCheckBox(_("Hide unconfirmed"))
+ self.hide_unconfirmed_checkbox.setChecked(hide_unconfirmed)
+ self.hide_unconfirmed_checkbox.stateChanged.connect(self.on_hide_unconfirmed_changed)
+ self.hide_unconfirmed_label = QLabel("")
+ layout.addRow(self.hide_unconfirmed_label, self.hide_unconfirmed_checkbox)
+
+ self._update_recording_mode_visibility(
+ RecordingTranscriberMode(self.recording_mode_combo.currentText())
+ )
+
+ # Export enabled checkbox
+ self._export_enabled = self.settings.value(
+ Settings.Key.RECORDING_TRANSCRIBER_EXPORT_ENABLED, False
+ )
+ self.export_enabled_checkbox = QCheckBox(_("Enable live recording export"))
+ self.export_enabled_checkbox.setChecked(self._export_enabled)
+ self.export_enabled_checkbox.stateChanged.connect(self.on_export_enabled_changed)
+ layout.addRow("", self.export_enabled_checkbox)
+
+ # Export folder
+ export_folder = self.settings.value(
+ Settings.Key.RECORDING_TRANSCRIBER_EXPORT_FOLDER, ""
+ )
+ self.export_folder_line_edit = LineEdit(export_folder, self)
+ self.export_folder_line_edit.setEnabled(self._export_enabled)
+ self.export_folder_line_edit.textChanged.connect(self.on_export_folder_changed)
+ self.export_folder_browse_button = QPushButton(_("Browse"), self)
+ self.export_folder_browse_button.setEnabled(self._export_enabled)
+ self.export_folder_browse_button.clicked.connect(self.on_browse_export_folder)
+ export_folder_row = QHBoxLayout()
+ export_folder_row.addWidget(self.export_folder_line_edit)
+ export_folder_row.addWidget(self.export_folder_browse_button)
+ self.export_folder_label = QLabel(_("Export folder:"))
+ self.export_folder_label.setEnabled(self._export_enabled)
+ layout.addRow(self.export_folder_label, export_folder_row)
+
+ # Export file name template
+ export_file_name = self.settings.value(
+ Settings.Key.RECORDING_TRANSCRIBER_EXPORT_FILE_NAME, ""
+ )
+ self.export_file_name_line_edit = LineEdit(export_file_name, self)
+ self.export_file_name_line_edit.setEnabled(self._export_enabled)
+ self.export_file_name_line_edit.textChanged.connect(self.on_export_file_name_changed)
+ self.export_file_name_label = QLabel(_("Export file name:"))
+ self.export_file_name_label.setEnabled(self._export_enabled)
+ layout.addRow(self.export_file_name_label, self.export_file_name_line_edit)
+
+ # Export file type
+ self.export_file_type_combo = QComboBox(self)
+ self.export_file_type_combo.addItem(_("Text file (.txt)"), "txt")
+ self.export_file_type_combo.addItem(_("CSV (.csv)"), "csv")
+ current_type = self.settings.value(
+ Settings.Key.RECORDING_TRANSCRIBER_EXPORT_FILE_TYPE, "txt"
+ )
+ type_index = self.export_file_type_combo.findData(current_type)
+ if type_index >= 0:
+ self.export_file_type_combo.setCurrentIndex(type_index)
+ self.export_file_type_combo.setEnabled(self._export_enabled)
+ self.export_file_type_combo.currentIndexChanged.connect(self.on_export_file_type_changed)
+ self.export_file_type_combo.setFixedWidth(200)
+ self.export_file_type_label = QLabel(_("Export file type:"))
+ self.export_file_type_label.setEnabled(self._export_enabled)
+ layout.addRow(self.export_file_type_label, self.export_file_type_combo)
+
+ # Max entries
+ max_entries = self.settings.value(
+ Settings.Key.RECORDING_TRANSCRIBER_EXPORT_MAX_ENTRIES, 0, int
+ )
+ self.export_max_entries_spin = QSpinBox(self)
+ self.export_max_entries_spin.setRange(0, 99)
+ self.export_max_entries_spin.setValue(max_entries)
+ self.export_max_entries_spin.setEnabled(self._export_enabled)
+ self.export_max_entries_spin.valueChanged.connect(self.on_export_max_entries_changed)
+ self.export_max_entries_spin.setFixedWidth(90)
+ self.export_max_entries_label = QLabel(_("Limit export entries\n(0 = export all):"))
+ self.export_max_entries_label.setEnabled(self._export_enabled)
+ layout.addRow(self.export_max_entries_label, self.export_max_entries_spin)
+
+ _field_height = self.llm_model_line_edit.sizeHint().height()
+ for widget in (
+ self.line_separator_line_edit,
+ self.silence_threshold_spin_box,
+ self.recording_mode_combo,
+ self.transcription_step_spin_box,
+ self.export_file_type_combo,
+ self.export_max_entries_spin,
+ ):
+ widget.setFixedHeight(_field_height)
button_box = QDialogButtonBox(
QDialogButtonBox.StandardButton(QDialogButtonBox.StandardButton.Ok), self
@@ -100,15 +235,6 @@ class AdvancedSettingsDialog(QDialog):
layout.addWidget(button_box)
self.setLayout(layout)
- self.resize(self.sizeHint())
-
- def on_temperature_changed(self, text: str):
- try:
- temperatures = [float(temp.strip()) for temp in text.split(",")]
- self.transcription_options.temperature = tuple(temperatures)
- self.transcription_options_changed.emit(self.transcription_options)
- except ValueError:
- pass
def on_initial_prompt_changed(self):
self.transcription_options.initial_prompt = (
@@ -120,8 +246,11 @@ class AdvancedSettingsDialog(QDialog):
self.transcription_options.enable_llm_translation = state == 2
self.transcription_options_changed.emit(self.transcription_options)
- self.llm_model_line_edit.setEnabled(self.transcription_options.enable_llm_translation)
- self.llm_prompt_text_edit.setEnabled(self.transcription_options.enable_llm_translation)
+ enabled = self.transcription_options.enable_llm_translation
+ self.llm_model_label.setEnabled(enabled)
+ self.llm_model_line_edit.setEnabled(enabled)
+ self.llm_prompt_label.setEnabled(enabled)
+ self.llm_prompt_text_edit.setEnabled(enabled)
def on_llm_model_changed(self, text: str):
self.transcription_options.llm_model = text
@@ -132,3 +261,72 @@ class AdvancedSettingsDialog(QDialog):
self.llm_prompt_text_edit.toPlainText()
)
self.transcription_options_changed.emit(self.transcription_options)
+
+ def on_silence_threshold_changed(self, value: float):
+ self.transcription_options.silence_threshold = value
+ self.transcription_options_changed.emit(self.transcription_options)
+
+ def on_line_separator_changed(self, text: str):
+ try:
+ self.transcription_options.line_separator = text.encode().decode("unicode_escape")
+ except UnicodeDecodeError:
+ return
+ self.transcription_options_changed.emit(self.transcription_options)
+
+ def on_recording_mode_changed(self, index: int):
+ self.settings.set_value(Settings.Key.RECORDING_TRANSCRIBER_MODE, index)
+ mode = list(RecordingTranscriberMode)[index]
+ self._update_recording_mode_visibility(mode)
+ self.recording_mode_changed.emit(mode)
+
+ def _update_recording_mode_visibility(self, mode: RecordingTranscriberMode):
+ is_append_and_correct = mode == RecordingTranscriberMode.APPEND_AND_CORRECT
+ self.line_separator_label.setVisible(not is_append_and_correct)
+ self.line_separator_line_edit.setVisible(not is_append_and_correct)
+ self.transcription_step_label.setVisible(is_append_and_correct)
+ self.transcription_step_spin_box.setVisible(is_append_and_correct)
+ self.hide_unconfirmed_label.setVisible(is_append_and_correct)
+ self.hide_unconfirmed_checkbox.setVisible(is_append_and_correct)
+
+ def on_transcription_step_changed(self, value: float):
+ self.transcription_options.transcription_step = round(value, 1)
+ self.transcription_options_changed.emit(self.transcription_options)
+
+ def on_hide_unconfirmed_changed(self, state: int):
+ value = state == 2
+ self.settings.set_value(Settings.Key.RECORDING_TRANSCRIBER_HIDE_UNCONFIRMED, value)
+ self.hide_unconfirmed_changed.emit(value)
+
+ def on_export_enabled_changed(self, state: int):
+ self._export_enabled = state == 2
+ self.settings.set_value(Settings.Key.RECORDING_TRANSCRIBER_EXPORT_ENABLED, self._export_enabled)
+ for widget in (
+ self.export_folder_label,
+ self.export_folder_line_edit,
+ self.export_folder_browse_button,
+ self.export_file_name_label,
+ self.export_file_name_line_edit,
+ self.export_file_type_label,
+ self.export_file_type_combo,
+ self.export_max_entries_label,
+ self.export_max_entries_spin,
+ ):
+ widget.setEnabled(self._export_enabled)
+
+ def on_export_folder_changed(self, text: str):
+ self.settings.set_value(Settings.Key.RECORDING_TRANSCRIBER_EXPORT_FOLDER, text)
+
+ def on_browse_export_folder(self):
+ folder = QFileDialog.getExistingDirectory(self, _("Select Export Folder"))
+ if folder:
+ self.export_folder_line_edit.setText(folder)
+
+ def on_export_file_name_changed(self, text: str):
+ self.settings.set_value(Settings.Key.RECORDING_TRANSCRIBER_EXPORT_FILE_NAME, text)
+
+ def on_export_file_type_changed(self, index: int):
+ file_type = self.export_file_type_combo.itemData(index)
+ self.settings.set_value(Settings.Key.RECORDING_TRANSCRIBER_EXPORT_FILE_TYPE, file_type)
+
+ def on_export_max_entries_changed(self, value: int):
+ self.settings.set_value(Settings.Key.RECORDING_TRANSCRIBER_EXPORT_MAX_ENTRIES, value)
diff --git a/buzz/widgets/transcriber/file_transcriber_widget.py b/buzz/widgets/transcriber/file_transcriber_widget.py
index da018338..a951f07f 100644
--- a/buzz/widgets/transcriber/file_transcriber_widget.py
+++ b/buzz/widgets/transcriber/file_transcriber_widget.py
@@ -1,3 +1,4 @@
+import logging
from typing import Optional, List, Tuple
from PyQt6 import QtGui
@@ -10,7 +11,7 @@ from PyQt6.QtWidgets import (
from buzz.dialogs import show_model_download_error_dialog
from buzz.locale import _
-from buzz.model_loader import ModelDownloader
+from buzz.model_loader import ModelDownloader, WhisperModelSize, ModelType
from buzz.paths import file_path_as_title
from buzz.settings.settings import Settings
from buzz.store.keyring_store import get_password, Key
@@ -76,6 +77,10 @@ class FileTranscriberWidget(QWidget):
self.openai_access_token_changed
)
+ self.form_widget.transcription_options_changed.connect(
+ self.reset_transcriber_controls
+ )
+
self.run_button = QPushButton(_("Run"), self)
self.run_button.setDefault(True)
self.run_button.clicked.connect(self.on_click_run)
@@ -154,7 +159,17 @@ class FileTranscriberWidget(QWidget):
self.reset_transcriber_controls()
def reset_transcriber_controls(self):
- self.run_button.setDisabled(False)
+ button_enabled = True
+ if (self.transcription_options.model.model_type == ModelType.FASTER_WHISPER
+ and self.transcription_options.model.whisper_model_size == WhisperModelSize.CUSTOM
+ and self.transcription_options.model.hugging_face_model_id == ""):
+ button_enabled = False
+
+ if (self.transcription_options.model.model_type == ModelType.HUGGING_FACE
+ and self.transcription_options.model.hugging_face_model_id == ""):
+ button_enabled = False
+
+ self.run_button.setEnabled(button_enabled)
def on_cancel_model_progress_dialog(self):
self.reset_transcriber_controls()
diff --git a/buzz/widgets/transcriber/file_transcription_form_widget.py b/buzz/widgets/transcriber/file_transcription_form_widget.py
index f08e3b05..8e9ff952 100644
--- a/buzz/widgets/transcriber/file_transcription_form_widget.py
+++ b/buzz/widgets/transcriber/file_transcription_form_widget.py
@@ -1,3 +1,4 @@
+import logging
from typing import Optional
from PyQt6.QtCore import pyqtSignal, Qt
@@ -50,6 +51,16 @@ class FileTranscriptionFormWidget(QWidget):
file_transcription_layout = QFormLayout()
file_transcription_layout.addRow("", self.word_level_timings_checkbox)
+ self.extract_speech_checkbox = QCheckBox(_("Extract speech"))
+ self.extract_speech_checkbox.setChecked(
+ self.transcription_options.extract_speech
+ )
+ self.extract_speech_checkbox.stateChanged.connect(
+ self.on_extract_speech_changed
+ )
+
+ file_transcription_layout.addRow("", self.extract_speech_checkbox)
+
export_format_layout = QHBoxLayout()
for output_format in OutputFormat:
export_format_checkbox = QCheckBox(
@@ -69,13 +80,10 @@ class FileTranscriptionFormWidget(QWidget):
layout.addLayout(file_transcription_layout)
self.setLayout(layout)
- self.reset_word_level_timings()
-
def on_transcription_options_changed(
self, transcription_options: TranscriptionOptions
):
self.transcription_options = transcription_options
- self.reset_word_level_timings()
self.transcription_options_changed.emit(
(self.transcription_options, self.file_transcription_options)
)
@@ -93,6 +101,15 @@ class FileTranscriptionFormWidget(QWidget):
(self.transcription_options, self.file_transcription_options)
)
+ def on_extract_speech_changed(self, value: int):
+ self.transcription_options.extract_speech = (
+ value == Qt.CheckState.Checked.value
+ )
+
+ self.transcription_options_changed.emit(
+ (self.transcription_options, self.file_transcription_options)
+ )
+
def get_on_checkbox_state_changed_callback(self, output_format: OutputFormat):
def on_checkbox_state_changed(state: int):
if state == Qt.CheckState.Checked.value:
@@ -105,9 +122,3 @@ class FileTranscriptionFormWidget(QWidget):
)
return on_checkbox_state_changed
-
- def reset_word_level_timings(self):
- self.word_level_timings_checkbox.setDisabled(
- self.transcription_options.model.model_type
- == ModelType.OPEN_AI_WHISPER_API
- )
diff --git a/buzz/widgets/transcriber/hugging_face_search_line_edit.py b/buzz/widgets/transcriber/hugging_face_search_line_edit.py
index f686cf4c..b53bbfa7 100644
--- a/buzz/widgets/transcriber/hugging_face_search_line_edit.py
+++ b/buzz/widgets/transcriber/hugging_face_search_line_edit.py
@@ -36,7 +36,7 @@ class HuggingFaceSearchLineEdit(LineEdit):
self.setSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Fixed)
self.setPlaceholderText(_("Huggingface ID of a model"))
- self.setMinimumWidth(255)
+ self.setMinimumWidth(50)
self.timer = QTimer(self)
self.timer.setSingleShot(True)
@@ -64,7 +64,8 @@ class HuggingFaceSearchLineEdit(LineEdit):
def focusInEvent(self, event):
super().focusInEvent(event)
- self.clear()
+ # Defer selectAll to run after mouse events are processed
+ QTimer.singleShot(0, self.selectAll)
def on_text_edited(self, text: str):
self.model_selected.emit(text)
diff --git a/buzz/widgets/transcriber/initial_prompt_text_edit.py b/buzz/widgets/transcriber/initial_prompt_text_edit.py
index 26959f4c..618c2273 100644
--- a/buzz/widgets/transcriber/initial_prompt_text_edit.py
+++ b/buzz/widgets/transcriber/initial_prompt_text_edit.py
@@ -10,4 +10,4 @@ class InitialPromptTextEdit(QPlainTextEdit):
self.setPlaceholderText(_("Enter prompt..."))
self.setEnabled(model_type.supports_initial_prompt)
self.setMinimumWidth(350)
- self.setFixedHeight(115)
+ self.setFixedHeight(80)
diff --git a/buzz/widgets/transcriber/languages_combo_box.py b/buzz/widgets/transcriber/languages_combo_box.py
index 7ab6c5b0..8ebc0e32 100644
--- a/buzz/widgets/transcriber/languages_combo_box.py
+++ b/buzz/widgets/transcriber/languages_combo_box.py
@@ -2,7 +2,7 @@ from typing import Optional
import os
from PyQt6.QtCore import pyqtSignal, Qt
-from PyQt6.QtWidgets import QComboBox, QWidget
+from PyQt6.QtWidgets import QComboBox, QWidget, QFrame
from PyQt6.QtGui import QStandardItem, QStandardItemModel
from buzz.locale import _
@@ -51,3 +51,9 @@ class LanguagesComboBox(QComboBox):
def on_index_changed(self, index: int):
self.languageChanged.emit(self.languages[index][0])
+
+ def showPopup(self):
+ super().showPopup()
+ popup = self.findChild(QFrame)
+ if popup and popup.height() > 400:
+ popup.setFixedHeight(400)
diff --git a/buzz/widgets/transcriber/mms_language_line_edit.py b/buzz/widgets/transcriber/mms_language_line_edit.py
new file mode 100644
index 00000000..4f101d6d
--- /dev/null
+++ b/buzz/widgets/transcriber/mms_language_line_edit.py
@@ -0,0 +1,48 @@
+from typing import Optional
+
+from PyQt6.QtCore import pyqtSignal
+from PyQt6.QtWidgets import QWidget, QSizePolicy
+
+from buzz.locale import _
+from buzz.widgets.line_edit import LineEdit
+
+
+class MMSLanguageLineEdit(LineEdit):
+ """Text input for MMS language codes (ISO 639-3).
+
+ MMS models support 1000+ languages using ISO 639-3 codes (3 letters).
+ Examples: eng (English), fra (French), deu (German), spa (Spanish)
+ """
+
+ languageChanged = pyqtSignal(str)
+
+ def __init__(
+ self,
+ default_language: str = "eng",
+ parent: Optional[QWidget] = None
+ ):
+ super().__init__(default_language, parent)
+ self.setSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Fixed)
+ self.setPlaceholderText(_("e.g., eng, fra, deu"))
+ self.setToolTip(
+ _("Enter an ISO 639-3 language code (3 letters).\n"
+ "Examples: eng (English), fra (French), deu (German),\n"
+ "spa (Spanish), lav (Latvian)")
+ )
+ self.setMaxLength(10) # Allow some flexibility for edge cases
+ self.setMinimumWidth(100)
+
+ self.textChanged.connect(self._on_text_changed)
+
+ def _on_text_changed(self, text: str):
+ """Emit language changed signal with cleaned text."""
+ cleaned = text.strip().lower()
+ self.languageChanged.emit(cleaned)
+
+ def language(self) -> str:
+ """Get the current language code."""
+ return self.text().strip().lower()
+
+ def setLanguage(self, language: str):
+ """Set the language code."""
+ self.setText(language.strip().lower() if language else "eng")
diff --git a/buzz/widgets/transcriber/temperature_validator.py b/buzz/widgets/transcriber/temperature_validator.py
deleted file mode 100644
index 3fcc97ec..00000000
--- a/buzz/widgets/transcriber/temperature_validator.py
+++ /dev/null
@@ -1,21 +0,0 @@
-from typing import Optional, Tuple
-
-from PyQt6.QtCore import QObject
-from PyQt6.QtGui import QValidator
-
-
-class TemperatureValidator(QValidator):
- def __init__(self, parent: Optional[QObject] = ...) -> None:
- super().__init__(parent)
-
- def validate(
- self, text: str, cursor_position: int
- ) -> Tuple["QValidator.State", str, int]:
- try:
- temp_strings = [temp.strip() for temp in text.split(",")]
- if temp_strings[-1] == "":
- return QValidator.State.Intermediate, text, cursor_position
- _ = [float(temp) for temp in temp_strings]
- return QValidator.State.Acceptable, text, cursor_position
- except ValueError:
- return QValidator.State.Invalid, text, cursor_position
diff --git a/buzz/widgets/transcriber/transcription_options_group_box.py b/buzz/widgets/transcriber/transcription_options_group_box.py
index 5611ae2f..f3c124d8 100644
--- a/buzz/widgets/transcriber/transcription_options_group_box.py
+++ b/buzz/widgets/transcriber/transcription_options_group_box.py
@@ -3,14 +3,14 @@ import logging
import platform
from typing import Optional, List
-from PyQt6.QtCore import pyqtSignal
+from PyQt6.QtCore import pyqtSignal, QLocale
from PyQt6.QtGui import QIcon
from PyQt6.QtWidgets import QGroupBox, QWidget, QFormLayout, QComboBox, QLabel, QHBoxLayout
from buzz.locale import _
from buzz.settings.settings import Settings
from buzz.widgets.icon import INFO_ICON_PATH
-from buzz.model_loader import ModelType, WhisperModelSize, get_whisper_cpp_file_path
+from buzz.model_loader import ModelType, WhisperModelSize, get_whisper_cpp_file_path, is_mms_model
from buzz.transcriber.transcriber import TranscriptionOptions, Task
from buzz.widgets.model_type_combo_box import ModelTypeComboBox
from buzz.widgets.openai_api_key_line_edit import OpenAIAPIKeyLineEdit
@@ -20,6 +20,7 @@ from buzz.widgets.transcriber.hugging_face_search_line_edit import (
HuggingFaceSearchLineEdit,
)
from buzz.widgets.transcriber.languages_combo_box import LanguagesComboBox
+from buzz.widgets.transcriber.mms_language_line_edit import MMSLanguageLineEdit
from buzz.widgets.transcriber.tasks_combo_box import TasksComboBox
@@ -32,9 +33,11 @@ class TranscriptionOptionsGroupBox(QGroupBox):
default_transcription_options: TranscriptionOptions = TranscriptionOptions(),
model_types: Optional[List[ModelType]] = None,
parent: Optional[QWidget] = None,
+ show_recording_settings: bool = False,
):
super().__init__(title="", parent=parent)
self.settings = Settings()
+ self.ui_locale = self.settings.value(Settings.Key.UI_LOCALE, QLocale().name())
self.transcription_options = default_transcription_options
self.form_layout = QFormLayout(self)
@@ -47,7 +50,9 @@ class TranscriptionOptionsGroupBox(QGroupBox):
self.model_type_combo_box.changed.connect(self.on_model_type_changed)
self.advanced_settings_dialog = AdvancedSettingsDialog(
- transcription_options=self.transcription_options, parent=self
+ transcription_options=self.transcription_options,
+ parent=self,
+ show_recording_settings=show_recording_settings,
)
self.advanced_settings_dialog.transcription_options_changed.connect(
self.on_transcription_options_changed
@@ -55,7 +60,7 @@ class TranscriptionOptionsGroupBox(QGroupBox):
self.whisper_model_size_combo_box = QComboBox(self)
self.whisper_model_size_combo_box.addItems(
- [size.value.title() for size in WhisperModelSize if size not in {WhisperModelSize.CUSTOM}]
+ [size.value.title() for size in WhisperModelSize if size not in {WhisperModelSize.CUSTOM, WhisperModelSize.LUMII}]
)
self.whisper_model_size_combo_box.currentTextChanged.connect(
self.on_whisper_model_size_changed
@@ -86,6 +91,13 @@ class TranscriptionOptionsGroupBox(QGroupBox):
)
self.languages_combo_box.languageChanged.connect(self.on_language_changed)
+ # MMS language input (text field for ISO 639-3 codes)
+ self.mms_language_line_edit = MMSLanguageLineEdit(
+ default_language="eng", parent=self
+ )
+ self.mms_language_line_edit.languageChanged.connect(self.on_mms_language_changed)
+ self.mms_language_line_edit.setVisible(False)
+
self.advanced_settings_button = AdvancedSettingsButton(self)
self.advanced_settings_button.clicked.connect(self.open_advanced_settings)
@@ -114,6 +126,7 @@ class TranscriptionOptionsGroupBox(QGroupBox):
self.form_layout.addRow(_("Api Key:"), self.openai_access_token_edit)
self.form_layout.addRow(_("Task:"), self.tasks_combo_box)
self.form_layout.addRow(_("Language:"), self.languages_combo_box)
+ self.form_layout.addRow(_("Language:"), self.mms_language_line_edit)
self.reset_visible_rows()
@@ -132,6 +145,14 @@ class TranscriptionOptionsGroupBox(QGroupBox):
self.transcription_options.language = language
self.transcription_options_changed.emit(self.transcription_options)
+ def on_mms_language_changed(self, language: str):
+ """Handle MMS language code changes."""
+ if language == "":
+ language = "eng" # Default to English for MMS
+
+ self.transcription_options.language = language
+ self.transcription_options_changed.emit(self.transcription_options)
+
def on_task_changed(self, task: Task):
self.transcription_options.task = task
self.transcription_options_changed.emit(self.transcription_options)
@@ -188,6 +209,18 @@ class TranscriptionOptionsGroupBox(QGroupBox):
WhisperModelSize.CUSTOM.value.title()
)
+ # Leave LUMII model only for Latvian whisper_cpp
+ lumii_model_index = (self.whisper_model_size_combo_box
+ .findText(WhisperModelSize.LUMII.value.title()))
+
+ if lumii_model_index != -1 and (model_type != ModelType.WHISPER_CPP or self.ui_locale != "lv_LV"):
+ self.whisper_model_size_combo_box.removeItem(lumii_model_index)
+
+ if lumii_model_index == -1 and model_type == ModelType.WHISPER_CPP and self.ui_locale == "lv_LV":
+ self.whisper_model_size_combo_box.addItem(
+ WhisperModelSize.LUMII.value.title()
+ )
+
self.whisper_model_size_combo_box.setCurrentText(
self.transcription_options.model.whisper_model_size.value.title()
)
@@ -216,11 +249,18 @@ class TranscriptionOptionsGroupBox(QGroupBox):
self.transcription_options.model.model_type == ModelType.WHISPER_CPP
)
+ # Update language widget visibility (MMS vs Whisper)
+ self._update_language_widget_visibility()
+
def on_model_type_changed(self, model_type: ModelType):
self.transcription_options.model.model_type = model_type
if not model_type.supports_initial_prompt:
self.transcription_options.initial_prompt = ""
+ if (self.transcription_options.model.whisper_model_size == WhisperModelSize.LUMII
+ and model_type != ModelType.WHISPER_CPP):
+ self.transcription_options.model.whisper_model_size = WhisperModelSize.LARGEV3TURBO
+
self.reset_visible_rows()
self.transcription_options_changed.emit(self.transcription_options)
@@ -237,3 +277,34 @@ class TranscriptionOptionsGroupBox(QGroupBox):
self.transcription_options_changed.emit(self.transcription_options)
self.settings.save_custom_model_id(self.transcription_options.model)
+
+ # Update language widget visibility based on whether this is an MMS model
+ self._update_language_widget_visibility()
+
+ def _update_language_widget_visibility(self):
+ """Update language widget visibility based on whether the selected model is MMS."""
+ model_type = self.transcription_options.model.model_type
+ model_id = self.transcription_options.model.hugging_face_model_id
+
+ # Check if this is an MMS model
+ is_mms = (model_type == ModelType.HUGGING_FACE and is_mms_model(model_id))
+
+ # Show MMS language input for MMS models, show dropdown for others
+ self.form_layout.setRowVisible(self.mms_language_line_edit, is_mms)
+ self.form_layout.setRowVisible(self.languages_combo_box, not is_mms)
+
+ # Sync the language value when switching between MMS and non-MMS
+ if is_mms:
+ # When switching to MMS, use the MMS language input value
+ mms_lang = self.mms_language_line_edit.language()
+ if mms_lang:
+ self.transcription_options.language = mms_lang
+ self.transcription_options_changed.emit(self.transcription_options)
+ else:
+ # When switching from MMS to a regular model, use the dropdown's current value
+ # This prevents invalid MMS language codes (like "eng") being used with Whisper
+ current_index = self.languages_combo_box.currentIndex()
+ dropdown_lang = self.languages_combo_box.languages[current_index][0]
+ if self.transcription_options.language != dropdown_lang:
+ self.transcription_options.language = dropdown_lang if dropdown_lang else None
+ self.transcription_options_changed.emit(self.transcription_options)
diff --git a/buzz/widgets/transcription_task_folder_watcher.py b/buzz/widgets/transcription_task_folder_watcher.py
index 040417e9..368c5d2e 100644
--- a/buzz/widgets/transcription_task_folder_watcher.py
+++ b/buzz/widgets/transcription_task_folder_watcher.py
@@ -6,10 +6,17 @@ from PyQt6.QtCore import QFileSystemWatcher, pyqtSignal, QObject
from buzz.store.keyring_store import Key, get_password
from buzz.transcriber.transcriber import FileTranscriptionTask
+from buzz.model_loader import ModelDownloader
from buzz.widgets.preferences_dialog.models.folder_watch_preferences import (
FolderWatchPreferences,
)
+# Supported media file extensions (audio and video)
+SUPPORTED_EXTENSIONS = {
+ ".mp3", ".wav", ".m4a", ".ogg", ".opus", ".flac", # audio
+ ".mp4", ".webm", ".ogm", ".mov", ".mkv", ".avi", ".wmv", # video
+}
+
class TranscriptionTaskFolderWatcher(QFileSystemWatcher):
preferences: FolderWatchPreferences
@@ -33,9 +40,14 @@ class TranscriptionTaskFolderWatcher(QFileSystemWatcher):
if len(self.directories()) > 0:
self.removePaths(self.directories())
if preferences.enabled:
- self.addPath(preferences.input_directory)
+ # Add the input directory and all subdirectories to the watcher
+ for dirpath, dirnames, _ in os.walk(preferences.input_directory):
+ # Skip hidden directories
+ dirnames[:] = [d for d in dirnames if not d.startswith(".")]
+ self.addPath(dirpath)
logging.debug(
- 'Watching for media files in "%s"', preferences.input_directory
+ 'Watching for media files in "%s" and subdirectories',
+ preferences.input_directory,
)
def find_tasks(self):
@@ -48,8 +60,18 @@ class TranscriptionTaskFolderWatcher(QFileSystemWatcher):
for dirpath, dirnames, filenames in os.walk(input_directory):
for filename in filenames:
file_path = os.path.join(dirpath, filename)
+ file_ext = os.path.splitext(filename)[1].lower()
+
+ # Check for temp conversion files (e.g., .ogg.wav)
+ name_without_ext = os.path.splitext(filename)[0]
+ secondary_ext = os.path.splitext(name_without_ext)[1].lower()
+ is_temp_conversion_file = secondary_ext in SUPPORTED_EXTENSIONS
+
if (
filename.startswith(".") # hidden files
+ or file_ext not in SUPPORTED_EXTENSIONS # non-media files
+ or is_temp_conversion_file # temp conversion files like .ogg.wav
+ or "_speech.mp3" in filename # extracted speech output files
or file_path in tasks # file already in tasks
or file_path in self.paths_emitted # file already emitted
):
@@ -64,16 +86,39 @@ class TranscriptionTaskFolderWatcher(QFileSystemWatcher):
file_paths=[file_path],
)
model_path = transcription_options.model.get_local_model_path()
+
+ if model_path is None:
+ ModelDownloader(model=transcription_options.model).run()
+ model_path = transcription_options.model.get_local_model_path()
+
+ # Preserve subdirectory structure in output directory
+ relative_path = os.path.relpath(dirpath, input_directory)
+ if relative_path == ".":
+ output_directory = self.preferences.output_directory
+ else:
+ output_directory = os.path.join(
+ self.preferences.output_directory, relative_path
+ )
+
+ # Create output directory if it doesn't exist
+ os.makedirs(output_directory, exist_ok=True)
+
task = FileTranscriptionTask(
file_path=file_path,
+ original_file_path=file_path,
transcription_options=transcription_options,
file_transcription_options=file_transcription_options,
model_path=model_path,
- output_directory=self.preferences.output_directory,
+ output_directory=output_directory,
source=FileTranscriptionTask.Source.FOLDER_WATCH,
+ delete_source_file=self.preferences.delete_processed_files,
)
self.task_found.emit(task)
self.paths_emitted.add(file_path)
- # Don't traverse into subdirectories
- break
+ # Filter out hidden directories and add new subdirectories to the watcher
+ dirnames[:] = [d for d in dirnames if not d.startswith(".")]
+ for dirname in dirnames:
+ subdir_path = os.path.join(dirpath, dirname)
+ if subdir_path not in self.directories():
+ self.addPath(subdir_path)
diff --git a/buzz/widgets/transcription_tasks_table_widget.py b/buzz/widgets/transcription_tasks_table_widget.py
index 62357ea8..3fe0db7b 100644
--- a/buzz/widgets/transcription_tasks_table_widget.py
+++ b/buzz/widgets/transcription_tasks_table_widget.py
@@ -32,21 +32,26 @@ from buzz.widgets.transcription_record import TranscriptionRecord
class Column(enum.Enum):
ID = 0
- ERROR_MESSAGE = auto()
- EXPORT_FORMATS = auto()
- FILE = auto()
- OUTPUT_FOLDER = auto()
- PROGRESS = auto()
- LANGUAGE = auto()
- MODEL_TYPE = auto()
- SOURCE = auto()
- STATUS = auto()
- TASK = auto()
- TIME_ENDED = auto()
- TIME_QUEUED = auto()
- TIME_STARTED = auto()
- URL = auto()
- WHISPER_MODEL_SIZE = auto()
+ ERROR_MESSAGE = 1
+ EXPORT_FORMATS = 2
+ FILE = 3
+ OUTPUT_FOLDER = 4
+ PROGRESS = 5
+ LANGUAGE = 6
+ MODEL_TYPE = 7
+ SOURCE = 8
+ STATUS = 9
+ TASK = 10
+ TIME_ENDED = 11
+ TIME_QUEUED = 12
+ TIME_STARTED = 13
+ URL = 14
+ WHISPER_MODEL_SIZE = 15
+ HUGGING_FACE_MODEL_ID = 16
+ WORD_LEVEL_TIMINGS = 17
+ EXTRACT_SPEECH = 18
+ NAME = 19
+ NOTES = 20
@dataclass
@@ -79,7 +84,7 @@ def format_record_status_text(record: QSqlRecord) -> str:
return _("Canceled")
case FileTranscriptionTask.Status.QUEUED:
return _("Queued")
- case _:
+ case _: # Case to handle UNKNOWN status
return ""
column_definitions = [
@@ -89,9 +94,10 @@ column_definitions = [
column=Column.FILE,
width=400,
delegate=RecordDelegate(
- text_getter=lambda record: record.value("url")
- if record.value("url") != ""
- else os.path.basename(record.value("file"))
+ text_getter=lambda record: record.value("name") or (
+ os.path.basename(record.value("file")) if record.value("file")
+ else record.value("url") or ""
+ )
),
hidden_toggleable=False,
),
@@ -107,7 +113,7 @@ column_definitions = [
ColDef(
id="task",
header=_("Task"),
- column=Column.SOURCE,
+ column=Column.TASK,
width=120,
delegate=RecordDelegate(
text_getter=lambda record: TASK_LABEL_TRANSLATIONS[Task(record.value("task"))]
@@ -119,19 +125,9 @@ column_definitions = [
column=Column.STATUS,
width=180,
delegate=RecordDelegate(text_getter=format_record_status_text),
- hidden_toggleable=False,
- ),
- ColDef(
- id="date_added",
- header=_("Date Added"),
- column=Column.TIME_QUEUED,
- width=180,
- delegate=RecordDelegate(
- text_getter=lambda record: datetime.fromisoformat(
- record.value("time_queued")
- ).strftime("%Y-%m-%d %H:%M:%S")
- ),
+ hidden_toggleable=True,
),
+
ColDef(
id="date_completed",
header=_("Date Completed"),
@@ -144,6 +140,26 @@ column_definitions = [
if record.value("time_ended") != ""
else ""
),
+ ), ColDef(
+ id="date_added",
+ header=_("Date Added"),
+ column=Column.TIME_QUEUED,
+ width=180,
+ delegate=RecordDelegate(
+ text_getter=lambda record: datetime.fromisoformat(
+ record.value("time_queued")
+ ).strftime("%Y-%m-%d %H:%M:%S")
+ ),
+ ),
+ ColDef(
+ id="notes",
+ header=_("Notes"),
+ column=Column.NOTES,
+ width=300,
+ delegate=RecordDelegate(
+ text_getter=lambda record: record.value("notes") or ""
+ ),
+ hidden_toggleable=True,
),
]
@@ -153,28 +169,72 @@ class TranscriptionTasksTableHeaderView(QHeaderView):
def contextMenuEvent(self, event):
menu = QMenu(self)
+
+ # Add reset column order option
+ menu.addAction(_("Reset Column Order")).triggered.connect(self.parent().reset_column_order)
+ menu.addSeparator()
+
+ # Add column visibility toggles
for definition in column_definitions:
- if not definition.hidden_toggleable:
- continue
- action = menu.addAction(definition.header)
- action.setCheckable(True)
- action.setChecked(not self.isSectionHidden(definition.column.value))
- action.toggled.connect(
- lambda checked, column_index=definition.column.value: self.on_column_checked(
- column_index, checked
+ if definition.hidden_toggleable:
+ action = menu.addAction(definition.header)
+ action.setCheckable(True)
+ action.setChecked(not self.parent().isColumnHidden(definition.column.value))
+ action.toggled.connect(
+ lambda checked, column_index=definition.column.value: self.on_column_checked(
+ column_index, checked
+ )
)
- )
menu.exec(event.globalPos())
def on_column_checked(self, column_index: int, checked: bool):
- self.setSectionHidden(column_index, not checked)
+ # Find the column definition for this index
+ column_def = None
+ for definition in column_definitions:
+ if definition.column.value == column_index:
+ column_def = definition
+ break
+
+ # If we're hiding the column, save its current width first
+ if not checked and not self.parent().isColumnHidden(column_index):
+ current_width = self.parent().columnWidth(column_index)
+ if current_width > 0: # Only save if there's a meaningful width
+ self.parent().settings.begin_group(self.parent().settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_WIDTHS)
+ self.parent().settings.settings.setValue(column_def.id, current_width)
+ self.parent().settings.end_group()
+
+ # Update the visibility state on the table view (not header view)
+ self.parent().setColumnHidden(column_index, not checked)
+
+ # Save current column order before any reloading
+ self.parent().save_column_order()
+
+ # Save both visibility and widths after the change
self.parent().save_column_visibility()
+ self.parent().save_column_widths()
+
+ # Ensure settings are synchronized
+ self.parent().settings.settings.sync()
+
+ # Force a complete refresh of the table
+ self.parent().viewport().update()
+ self.parent().repaint()
+ self.parent().horizontalHeader().update()
+ self.parent().updateGeometry()
+ self.parent().adjustSize()
+
+ # Force a model refresh to ensure the view is updated
+ self.parent().model().layoutChanged.emit()
+
+ self.parent().reload_column_order_from_settings()
class TranscriptionTasksTableWidget(QTableView):
return_clicked = pyqtSignal()
+ delete_requested = pyqtSignal()
def __init__(self, parent: Optional[QWidget] = None):
super().__init__(parent)
+ self.transcription_service = None
self.setHorizontalHeader(TranscriptionTasksTableHeaderView(Qt.Orientation.Horizontal, self))
@@ -190,57 +250,68 @@ class TranscriptionTasksTableWidget(QTableView):
self.settings = Settings()
- self.settings.begin_group(
- Settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_VISIBILITY
- )
+ # Set up column headers and delegates
for definition in column_definitions:
self.model().setHeaderData(
definition.column.value,
Qt.Orientation.Horizontal,
definition.header,
)
-
- visible = True
- if definition.hidden_toggleable:
- visible = self.settings.settings.value(definition.id, "true") in {"true", "True", True}
-
- self.setColumnHidden(definition.column.value, not visible)
- if definition.width is not None:
- self.setColumnWidth(definition.column.value, definition.width)
if definition.delegate is not None:
self.setItemDelegateForColumn(
definition.column.value, definition.delegate
)
- self.settings.end_group()
+
+ # Load column visibility
+ self.load_column_visibility()
self.model().select()
self.setEditTriggers(QAbstractItemView.EditTrigger.NoEditTriggers)
self.setSelectionBehavior(QAbstractItemView.SelectionBehavior.SelectRows)
self.verticalHeader().hide()
self.setAlternatingRowColors(True)
+
+ # Enable column sorting and moving
+ self.setSortingEnabled(True)
+ self.horizontalHeader().setSectionsMovable(True)
+ self.horizontalHeader().setSectionsClickable(True)
+ self.horizontalHeader().setSortIndicatorShown(True)
- # Show date added before date completed
- self.horizontalHeader().swapSections(11, 12)
+ # Connect signals for column resize and move
+ self.horizontalHeader().sectionResized.connect(self.on_column_resized)
+ self.horizontalHeader().sectionMoved.connect(self.on_column_moved)
+ self.horizontalHeader().sortIndicatorChanged.connect(self.on_sort_indicator_changed)
+
+ # Load saved column order, widths, and sort state
+ self.load_column_order()
+ self.load_column_widths()
+ self.load_sort_state()
+
+
+ # Reload column visibility after all reordering is complete
+ self.load_column_visibility()
def contextMenuEvent(self, event):
menu = QMenu(self)
- for definition in column_definitions:
- if not definition.hidden_toggleable:
- continue
- action = menu.addAction(definition.header)
- action.setCheckable(True)
- action.setChecked(not self.isColumnHidden(definition.column.value))
- action.toggled.connect(
- lambda checked,
- column_index=definition.column.value: self.on_column_checked(
- column_index, checked
- )
- )
- menu.exec(event.globalPos())
+
+ # Add transcription actions if a row is selected
+ selected_rows = self.selectionModel().selectedRows()
+ if selected_rows:
+ transcription = self.transcription(selected_rows[0])
- def on_column_checked(self, column_index: int, checked: bool):
- self.setColumnHidden(column_index, not checked)
- self.save_column_visibility()
+ # Add restart/continue action for failed/canceled tasks
+ if transcription.status in ["failed", "canceled"]:
+ restart_action = menu.addAction(_("Restart Transcription"))
+ restart_action.triggered.connect(self.on_restart_transcription_action)
+ menu.addSeparator()
+
+ rename_action = menu.addAction(_("Rename"))
+ rename_action.triggered.connect(self.on_rename_action)
+
+ notes_action = menu.addAction(_("Add/Edit Notes"))
+ notes_action.triggered.connect(self.on_notes_action)
+
+ menu.exec(event.globalPos())
def save_column_visibility(self):
self.settings.begin_group(
@@ -252,22 +323,257 @@ class TranscriptionTasksTableWidget(QTableView):
)
self.settings.end_group()
+ def on_column_resized(self, logical_index: int, old_size: int, new_size: int):
+ """Handle column resize events"""
+ self.save_column_widths()
+
+ def on_column_moved(self, logical_index: int, old_visual_index: int, new_visual_index: int):
+ """Handle column move events"""
+ self.save_column_order()
+ # Refresh visibility after column move to ensure it's maintained
+ self.load_column_visibility()
+
+ def on_sort_indicator_changed(self, logical_index: int, order: Qt.SortOrder):
+ """Handle sort indicator change events"""
+ self.save_sort_state()
+
+ def on_double_click(self, index: QModelIndex):
+ """Handle double-click events - trigger notes edit for notes column"""
+ if index.column() == Column.NOTES.value:
+ self.on_notes_action()
+
+ def save_column_widths(self):
+ """Save current column widths to settings"""
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_WIDTHS)
+ for definition in column_definitions:
+ # Only save width if column is visible and has a meaningful width
+ if not self.isColumnHidden(definition.column.value):
+ width = self.columnWidth(definition.column.value)
+ if width > 0: # Only save if there's a meaningful width
+ self.settings.settings.setValue(definition.id, width)
+ self.settings.end_group()
+
+ def save_column_order(self):
+ """Save current column order to settings"""
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_ORDER)
+ header = self.horizontalHeader()
+ for visual_index in range(header.count()):
+ logical_index = header.logicalIndex(visual_index)
+ # Find the column definition for this logical index
+ for definition in column_definitions:
+ if definition.column.value == logical_index:
+ self.settings.settings.setValue(definition.id, visual_index)
+ break
+ self.settings.end_group()
+
+ def load_column_widths(self):
+ """Load saved column widths from settings"""
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_WIDTHS)
+ for definition in column_definitions:
+ if definition.width is not None: # Only load if column has a default width
+ saved_width = self.settings.settings.value(definition.id, definition.width)
+ if saved_width is not None:
+ self.setColumnWidth(definition.column.value, int(saved_width))
+ self.settings.end_group()
+
+ def save_sort_state(self):
+ """Save current sort state to settings"""
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_SORT_STATE)
+ header = self.horizontalHeader()
+ self.settings.settings.setValue("column", header.sortIndicatorSection())
+ self.settings.settings.setValue("order", header.sortIndicatorOrder().value)
+ self.settings.end_group()
+
+ def load_sort_state(self):
+ """Load saved sort state from settings"""
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_SORT_STATE)
+ column = self.settings.settings.value("column")
+ order = self.settings.settings.value("order")
+ self.settings.end_group()
+
+ if column is not None and order is not None:
+ sort_order = Qt.SortOrder(int(order))
+ self.sortByColumn(int(column), sort_order)
+
+ def load_column_visibility(self):
+ """Load saved column visibility from settings"""
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_VISIBILITY)
+ for definition in column_definitions:
+ visible = True
+ if definition.hidden_toggleable:
+ value = self.settings.settings.value(definition.id, "true")
+ visible = value in {"true", "True", True}
+
+ self.setColumnHidden(definition.column.value, not visible)
+ self.settings.end_group()
+
+ # Force a refresh of the table layout
+ self.horizontalHeader().update()
+ self.viewport().update()
+ self.updateGeometry()
+
+ def load_column_order(self):
+ """Load saved column order from settings"""
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_ORDER)
+
+ # Create a mapping of column IDs to their saved visual positions
+ column_positions = {}
+ for definition in column_definitions:
+ saved_position = self.settings.settings.value(definition.id)
+ if saved_position is not None:
+ column_positions[definition.column.value] = int(saved_position)
+
+ self.settings.end_group()
+
+ # Apply the saved order
+ if column_positions:
+ header = self.horizontalHeader()
+ for logical_index, visual_position in column_positions.items():
+ if 0 <= visual_position < header.count():
+ header.moveSection(header.visualIndex(logical_index), visual_position)
+
+ def reset_column_order(self):
+ """Reset column order to default"""
+
+ # Reset column widths to defaults
+ for definition in column_definitions:
+ if definition.width is not None:
+ self.setColumnWidth(definition.column.value, definition.width)
+
+ # Show all columns
+ for definition in column_definitions:
+ self.setColumnHidden(definition.column.value, False)
+
+ # Restore default column order
+ header = self.horizontalHeader()
+ # Move each section to its default position in order
+ # To avoid index shifting, move from left to right
+ for target_visual_index, definition in enumerate(column_definitions):
+ logical_index = definition.column.value
+ current_visual_index = header.visualIndex(logical_index)
+ if current_visual_index != target_visual_index:
+ header.moveSection(current_visual_index, target_visual_index)
+
+ # Reset sort to default (TIME_QUEUED descending)
+ self.sortByColumn(Column.TIME_QUEUED.value, Qt.SortOrder.DescendingOrder)
+
+ # Clear saved settings
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_ORDER)
+ self.settings.settings.remove("")
+ self.settings.end_group()
+
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_WIDTHS)
+ self.settings.settings.remove("")
+ self.settings.end_group()
+
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_SORT_STATE)
+ self.settings.settings.remove("")
+ self.settings.end_group()
+
+ # Save the reset state for visibility, widths, and sort
+ self.save_column_visibility()
+ self.save_column_widths()
+ self.save_sort_state()
+
+ # Force a refresh of the table layout
+ self.horizontalHeader().update()
+ self.viewport().update()
+ self.updateGeometry()
+
+ def reload_column_order_from_settings(self):
+ """Reload column order, width, and visibility from settings"""
+
+ # --- Load column visibility ---
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_VISIBILITY)
+ visibility_settings = {}
+ for definition in column_definitions:
+ vis = self.settings.settings.value(definition.id)
+ if vis is not None:
+ visibility_settings[definition.id] = str(vis).lower() not in ("0", "false", "no")
+ self.settings.end_group()
+
+ # --- Load column widths ---
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_WIDTHS)
+ width_settings = {}
+ for definition in column_definitions:
+ width = self.settings.settings.value(definition.id)
+ if width is not None:
+ try:
+ width_settings[definition.id] = int(width)
+ except Exception:
+ pass
+ self.settings.end_group()
+
+ # --- Load column order ---
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_TASKS_TABLE_COLUMN_ORDER)
+ order_settings = {}
+ for definition in column_definitions:
+ pos = self.settings.settings.value(definition.id)
+ if pos is not None:
+ try:
+ order_settings[definition.column.value] = int(pos)
+ except Exception:
+ pass
+ self.settings.end_group()
+
+ # --- Apply visibility, widths, and order ---
+ header = self.horizontalHeader()
+
+ # First, set visibility and width for each column
+ for definition in column_definitions:
+ is_visible = visibility_settings.get(definition.id, True)
+ width = width_settings.get(definition.id, definition.width)
+ self.setColumnHidden(definition.column.value, not is_visible)
+ if width is not None:
+ self.setColumnWidth(definition.column.value, max(width, 100))
+
+ # Then, apply column order
+ # Build a list of (logical_index, visual_position) for ALL columns (including hidden ones)
+ all_columns = [
+ (definition.column.value, order_settings.get(definition.column.value, idx))
+ for idx, definition in enumerate(column_definitions)
+ ]
+ # Sort by saved visual position
+ all_columns.sort(key=lambda x: x[1])
+
+ # Move sections to match the saved order
+ for target_visual, (logical_index, _) in enumerate(all_columns):
+ current_visual = header.visualIndex(logical_index)
+ if current_visual != target_visual:
+ header.moveSection(current_visual, target_visual)
+
def copy_selected_fields(self):
selected_text = ""
for row in self.selectionModel().selectedRows():
row_index = row.row()
- file_name = self.model().data(self.model().index(row_index, 3))
- url = self.model().data(self.model().index(row_index, 14))
+ file_name = self.model().data(self.model().index(row_index, Column.FILE.value))
+ url = self.model().data(self.model().index(row_index, Column.URL.value))
selected_text += f"{file_name}{url}\n"
selected_text = selected_text.rstrip("\n")
QApplication.clipboard().setText(selected_text)
+ def mouseDoubleClickEvent(self, event: QtGui.QMouseEvent) -> None:
+ """Override double-click to prevent default behavior when clicking on notes column"""
+ index = self.indexAt(event.pos())
+ if index.isValid() and index.column() == Column.NOTES.value:
+ # Handle our custom double-click action without triggering default behavior
+ self.on_double_click(index)
+ event.accept()
+ else:
+ # For other columns, use default behavior
+ super().mouseDoubleClickEvent(event)
+
def keyPressEvent(self, event: QtGui.QKeyEvent) -> None:
if event.key() == Qt.Key.Key_Return:
self.return_clicked.emit()
+ if event.key() == Qt.Key.Key_Delete:
+ if self.selectionModel().selectedRows():
+ self.delete_requested.emit()
+ return
+
if event.matches(QKeySequence.StandardKey.Copy):
self.copy_selected_fields()
return
@@ -307,3 +613,195 @@ class TranscriptionTasksTableWidget(QTableView):
if hh == 0:
return result
return f"{hh}h {result}"
+
+ def on_rename_action(self):
+ selected_rows = self.selectionModel().selectedRows()
+ if not selected_rows:
+ return
+
+ # Get the first selected transcription
+ transcription = self.transcription(selected_rows[0])
+
+ # Get current name or fallback to file name
+ current_name = transcription.name or (
+ transcription.url if transcription.url
+ else os.path.basename(transcription.file) if transcription.file
+ else ""
+ )
+
+ # Show input dialog
+ from PyQt6.QtWidgets import QInputDialog
+ new_name, ok = QInputDialog.getText(
+ self,
+ _("Rename Transcription"),
+ _("Enter new name:"),
+ text=current_name
+ )
+
+ if ok and new_name.strip():
+ # Update the transcription name
+ from uuid import UUID
+ self.transcription_service.update_transcription_name(
+ UUID(transcription.id),
+ new_name.strip()
+ )
+ self.refresh_all()
+
+ def on_notes_action(self):
+ selected_rows = self.selectionModel().selectedRows()
+ if not selected_rows:
+ return
+
+ # Get the first selected transcription
+ transcription = self.transcription(selected_rows[0])
+
+ # Show input dialog for notes
+ from PyQt6.QtWidgets import QInputDialog
+ current_notes = transcription.notes or ""
+ new_notes, ok = QInputDialog.getMultiLineText(
+ self,
+ _("Notes"),
+ _("Enter some relevant notes for this transcription:"),
+ text=current_notes
+ )
+
+ if ok:
+ # Update the transcription notes
+ from uuid import UUID
+ self.transcription_service.update_transcription_notes(
+ UUID(transcription.id),
+ new_notes
+ )
+ self.refresh_all()
+
+ def on_restart_transcription_action(self):
+ """Restart transcription for failed or canceled tasks"""
+ selected_rows = self.selectionModel().selectedRows()
+ if not selected_rows:
+ return
+
+ # Get the first selected transcription
+ transcription = self.transcription(selected_rows[0])
+
+ # Check if the task can be restarted
+ if transcription.status not in ["failed", "canceled"]:
+ from PyQt6.QtWidgets import QMessageBox
+ QMessageBox.information(
+ self,
+ _("Cannot Restart"),
+ _("Only failed or canceled transcriptions can be restarted.")
+ )
+ return
+
+ try:
+ self.transcription_service.reset_transcription_for_restart(UUID(transcription.id))
+ self._restart_transcription_task(transcription)
+ self.refresh_all()
+ except Exception as e:
+ from PyQt6.QtWidgets import QMessageBox
+ QMessageBox.warning(
+ self,
+ _("Error"),
+ _("Failed to restart transcription: {}").format(str(e))
+ )
+
+ def _restart_transcription_task(self, transcription):
+ """Create a new FileTranscriptionTask and add it to the queue worker"""
+ from buzz.transcriber.transcriber import (
+ FileTranscriptionTask,
+ TranscriptionOptions,
+ FileTranscriptionOptions,
+ Task
+ )
+ from buzz.model_loader import TranscriptionModel, ModelType
+ from buzz.transcriber.transcriber import OutputFormat
+
+ # Recreate the transcription options from the database record
+ from buzz.model_loader import WhisperModelSize
+
+ # Convert string whisper_model_size to enum if it exists
+ whisper_model_size = None
+ if transcription.whisper_model_size:
+ try:
+ whisper_model_size = WhisperModelSize(transcription.whisper_model_size)
+ except ValueError:
+ # If the stored value is invalid, use a default
+ whisper_model_size = WhisperModelSize.TINY
+
+ transcription_options = TranscriptionOptions(
+ language=transcription.language if transcription.language else None,
+ task=Task(transcription.task) if transcription.task else Task.TRANSCRIBE,
+ model=TranscriptionModel(
+ model_type=ModelType(transcription.model_type) if transcription.model_type else ModelType.WHISPER,
+ whisper_model_size=whisper_model_size,
+ hugging_face_model_id=transcription.hugging_face_model_id
+ ),
+ word_level_timings=transcription.word_level_timings == "1" if transcription.word_level_timings else False,
+ extract_speech=transcription.extract_speech == "1" if transcription.extract_speech else False,
+ initial_prompt="", # Not stored in database, use default
+ openai_access_token="", # Not stored in database, use default
+ enable_llm_translation=False, # Not stored in database, use default
+ llm_prompt="", # Not stored in database, use default
+ llm_model="" # Not stored in database, use default
+ )
+
+ # Recreate the file transcription options
+ output_formats = set()
+ if transcription.export_formats:
+ for format_str in transcription.export_formats.split(','):
+ try:
+ output_formats.add(OutputFormat(format_str.strip()))
+ except ValueError:
+ pass # Skip invalid formats
+
+ file_transcription_options = FileTranscriptionOptions(
+ url=transcription.url if transcription.url else None,
+ output_formats=output_formats
+ )
+
+ # Get the model path from the transcription options
+ model_path = transcription_options.model.get_local_model_path()
+ if model_path is None:
+ # If model is not available locally, we need to download it
+ from buzz.model_loader import ModelDownloader
+ ModelDownloader(model=transcription_options.model).run()
+ model_path = transcription_options.model.get_local_model_path()
+
+ if model_path is None:
+ from PyQt6.QtWidgets import QMessageBox
+ QMessageBox.warning(
+ self,
+ _("Error"),
+ _("Could not restart transcription: model not available and could not be downloaded.")
+ )
+ return
+
+ # Create the new task
+ task = FileTranscriptionTask(
+ transcription_options=transcription_options,
+ file_transcription_options=file_transcription_options,
+ model_path=model_path,
+ file_path=transcription.file if transcription.file else None,
+ url=transcription.url if transcription.url else None,
+ output_directory=transcription.output_folder if transcription.output_folder else None,
+ source=FileTranscriptionTask.Source(transcription.source) if transcription.source else FileTranscriptionTask.Source.FILE_IMPORT,
+ uid=UUID(transcription.id)
+ )
+
+ # Add the task to the queue worker
+ # We need to access the main window's transcriber worker
+ # This is a bit of a hack, but it's the cleanest way given the current architecture
+ main_window = self.parent()
+ while main_window and not hasattr(main_window, 'transcriber_worker'):
+ main_window = main_window.parent()
+
+ if main_window and hasattr(main_window, 'transcriber_worker'):
+ main_window.transcriber_worker.add_task(task)
+ else:
+ # Fallback: show error if we can't find the transcriber worker
+ from PyQt6.QtWidgets import QMessageBox
+ QMessageBox.warning(
+ self,
+ _("Error"),
+ _("Could not restart transcription: transcriber worker not found.")
+ )
\ No newline at end of file
diff --git a/buzz/widgets/transcription_viewer/export_transcription_menu.py b/buzz/widgets/transcription_viewer/export_transcription_menu.py
index eb450ab0..2ef41a7f 100644
--- a/buzz/widgets/transcription_viewer/export_transcription_menu.py
+++ b/buzz/widgets/transcription_viewer/export_transcription_menu.py
@@ -1,5 +1,6 @@
import logging
from PyQt6.QtGui import QAction
+from PyQt6.QtCore import pyqtSignal
from PyQt6.QtWidgets import QWidget, QMenu, QFileDialog
from buzz.db.entity.transcription import Transcription
@@ -17,45 +18,33 @@ class ExportTranscriptionMenu(QMenu):
self,
transcription: Transcription,
transcription_service: TranscriptionService,
+ has_translation: bool,
+ translation: pyqtSignal,
parent: QWidget | None = None,
):
super().__init__(parent)
self.transcription = transcription
self.transcription_service = transcription_service
- self.segments = []
- self.load_segments()
- if self.segments and len(self.segments[0].translation) > 0:
- text_label = _("Text")
- translation_label = _("Translation")
- actions = [
- action
- for output_format in OutputFormat
- for action in [
- QAction(text=f"{output_format.value.upper()} - {text_label}", parent=self),
- QAction(text=f"{output_format.value.upper()} - {translation_label}", parent=self)
- ]
- ]
- else:
- actions = [
- QAction(text=output_format.value.upper(), parent=self)
- for output_format in OutputFormat
- ]
+ translation.connect(self.on_translation_available)
+
+ text_label = _("Text")
+ translation_label = _("Translation")
+ self.text_actions = [
+ QAction(text=f"{output_format.value.upper()} - {text_label}", parent=self)
+ for output_format in OutputFormat
+ ]
+ self.translation_actions = [
+ QAction(text=f"{output_format.value.upper()} - {translation_label}", parent=self)
+ for output_format in OutputFormat
+ ]
+ for action in self.translation_actions:
+ action.setVisible(has_translation)
+ actions = self.text_actions + self.translation_actions
self.addActions(actions)
self.triggered.connect(self.on_menu_triggered)
- def load_segments(self):
- self.segments = [
- Segment(
- start=segment.start_time,
- end=segment.end_time,
- text=segment.text,
- translation=segment.translation)
- for segment in self.transcription_service.get_transcription_segments(
- transcription_id=self.transcription.id_as_uuid
- )
- ]
@staticmethod
def extract_format_and_segment_key(action_text: str):
parts = action_text.split('-')
@@ -65,9 +54,24 @@ class ExportTranscriptionMenu(QMenu):
return output_format, segment_key
+ def on_translation_available(self):
+ for action in self.translation_actions:
+ action.setVisible(True)
+
def on_menu_triggered(self, action: QAction):
+ segments = [
+ Segment(
+ start=segment.start_time,
+ end=segment.end_time,
+ text=segment.text,
+ translation=segment.translation)
+ for segment in self.transcription_service.get_transcription_segments(
+ transcription_id=self.transcription.id_as_uuid
+ )
+ ]
+
output_format_value, segment_key = self.extract_format_and_segment_key(action.text())
- output_format = OutputFormat[output_format_value]
+ output_format = OutputFormat(output_format_value.lower())
default_path = self.transcription.get_output_file_path(
output_format=output_format
@@ -83,12 +87,9 @@ class ExportTranscriptionMenu(QMenu):
if output_file_path == "":
return
- # Reload segments in case they were resized
- self.load_segments()
-
write_output(
path=output_file_path,
- segments=self.segments,
+ segments=segments,
output_format=output_format,
segment_key=segment_key
)
diff --git a/buzz/widgets/transcription_viewer/speaker_identification_widget.py b/buzz/widgets/transcription_viewer/speaker_identification_widget.py
new file mode 100644
index 00000000..94368d0e
--- /dev/null
+++ b/buzz/widgets/transcription_viewer/speaker_identification_widget.py
@@ -0,0 +1,800 @@
+import re
+import os
+import logging
+import ssl
+import time
+import random
+from typing import Optional
+
+# Fix SSL certificate verification for bundled applications (macOS, Windows)
+# This must be done before importing libraries that download from Hugging Face
+try:
+ import certifi
+ os.environ.setdefault('REQUESTS_CA_BUNDLE', certifi.where())
+ os.environ.setdefault('SSL_CERT_FILE', certifi.where())
+ os.environ.setdefault('SSL_CERT_DIR', os.path.dirname(certifi.where()))
+ # Also update the default SSL context for urllib
+ ssl._create_default_https_context = lambda: ssl.create_default_context(cafile=certifi.where())
+except ImportError:
+ pass
+
+import faster_whisper
+import torch
+from PyQt6.QtMultimedia import QMediaPlayer, QAudioOutput
+from PyQt6.QtCore import Qt, QThread, QObject, pyqtSignal, QUrl, QTimer
+from PyQt6.QtGui import QFont
+from PyQt6.QtWidgets import (
+ QWidget,
+ QFormLayout,
+ QVBoxLayout,
+ QHBoxLayout,
+ QLabel,
+ QProgressBar,
+ QPushButton,
+ QCheckBox,
+ QGroupBox,
+ QSpacerItem,
+ QSizePolicy,
+ QLayout,
+)
+from buzz.locale import _
+from buzz.db.entity.transcription import Transcription
+from buzz.db.service.transcription_service import TranscriptionService
+from buzz.paths import file_path_as_title
+from buzz.settings.settings import Settings
+from buzz.widgets.line_edit import LineEdit
+from buzz.transcriber.transcriber import Segment
+
+
+
+def process_in_batches(
+ items,
+ process_func,
+ batch_size=200,
+ chunk_size=230,
+ smaller_batch_size=100,
+ exception_types=(AssertionError,),
+ **process_func_kwargs
+):
+ """
+ Process items in batches with automatic fallback to smaller batches on errors.
+
+ This is a generic batch processing function that can be used with any processing
+ function that has chunk size limitations. It automatically retries with smaller
+ batches when specified exceptions occur.
+
+ Args:
+ items: List of items to process
+ process_func: Callable that processes a batch. Should accept (batch, chunk_size, **kwargs)
+ and return a list of results
+ batch_size: Initial batch size (default: 200)
+ chunk_size: Maximum chunk size for the processing function (default: 230)
+ smaller_batch_size: Fallback batch size when errors occur (default: 100)
+ exception_types: Tuple of exception types to catch and retry with smaller batches
+ (default: (AssertionError,))
+ **process_func_kwargs: Additional keyword arguments to pass to process_func
+
+ Returns:
+ List of processed results (concatenated from all batches)
+
+ Example:
+ >>> def my_predict(batch, chunk_size):
+ ... return [f"processed_{item}" for item in batch]
+ >>> results = process_in_batches(
+ ... items=["a", "b", "c"],
+ ... process_func=my_predict,
+ ... batch_size=2
+ ... )
+ """
+ all_results = []
+
+ for i in range(0, len(items), batch_size):
+ batch = items[i:i + batch_size]
+ try:
+ batch_results = process_func(batch, chunk_size=min(chunk_size, len(batch)), **process_func_kwargs)
+ all_results.extend(batch_results)
+ except exception_types as e:
+ # If batch still fails, try with even smaller chunks
+ logging.warning(f"Batch processing failed, trying smaller chunks: {e}")
+ for j in range(0, len(batch), smaller_batch_size):
+ smaller_batch = batch[j:j + smaller_batch_size]
+ smaller_results = process_func(smaller_batch, chunk_size=min(chunk_size, len(smaller_batch)), **process_func_kwargs)
+ all_results.extend(smaller_results)
+
+ return all_results
+
+SENTENCE_END = re.compile(r'.*[.!?。!?]')
+
+class IdentificationWorker(QObject):
+ finished = pyqtSignal(list)
+ progress_update = pyqtSignal(str)
+ error = pyqtSignal(str)
+
+ def __init__(self, transcription, transcription_service):
+ super().__init__()
+ self.transcription = transcription
+ self.transcription_service = transcription_service
+ self._is_cancelled = False
+
+ def cancel(self):
+ """Request cancellation of the worker."""
+ self._is_cancelled = True
+
+ def get_transcript(self, audio, **kwargs) -> dict:
+ buzz_segments = self.transcription_service.get_transcription_segments(
+ transcription_id=self.transcription.id_as_uuid
+ )
+
+ segments = []
+ words = []
+ text = ""
+ for buzz_segment in buzz_segments:
+ words.append({
+ 'word': buzz_segment.text + " ",
+ 'start': buzz_segment.start_time / 100,
+ 'end': buzz_segment.end_time / 100,
+ })
+ text += buzz_segment.text + " "
+
+ if SENTENCE_END.match(buzz_segment.text):
+ segments.append({
+ 'text': text,
+ 'words': words
+ })
+ words = []
+ text = ""
+
+ return {
+ 'language': self.transcription.language,
+ 'segments': segments
+ }
+
+ def run(self):
+ try:
+ from ctc_forced_aligner.ctc_forced_aligner import (
+ generate_emissions,
+ get_alignments,
+ get_spans,
+ load_alignment_model,
+ postprocess_results,
+ preprocess_text,
+ )
+ from whisper_diarization.helpers import (
+ get_realigned_ws_mapping_with_punctuation,
+ get_sentences_speaker_mapping,
+ get_words_speaker_mapping,
+ langs_to_iso,
+ punct_model_langs,
+ )
+ from deepmultilingualpunctuation.deepmultilingualpunctuation import PunctuationModel
+ from whisper_diarization.diarization import MSDDDiarizer
+ except ImportError as e:
+ logging.exception("Failed to import speaker identification libraries: %s", e)
+ self.error.emit(
+ _("Speaker identification is not available: failed to load required libraries.")
+ + f"\n\n{e}"
+ )
+ return
+
+ diarizer_model = None
+ alignment_model = None
+
+ try:
+ logging.debug("Speaker identification worker: Starting")
+ self.progress_update.emit(_("1/8 Collecting transcripts"))
+
+ if self._is_cancelled:
+ logging.debug("Speaker identification worker: Cancelled at step 1")
+ return
+
+ # Step 1 - Get transcript
+ # TODO - Add detected language to the transcript, detect and store separately in metadata
+ # Will also be relevant for template parsing of transcript file names
+ # - See diarize.py for example on how to get this info from whisper transcript, maybe other whisper models also have it
+ language = self.transcription.language if self.transcription.language else "en"
+
+ segments = self.transcription_service.get_transcription_segments(
+ transcription_id=self.transcription.id_as_uuid
+ )
+
+ full_transcript = " ".join(segment.text for segment in segments)
+ full_transcript = re.sub(r' {2,}', ' ', full_transcript)
+
+ if self._is_cancelled:
+ logging.debug("Speaker identification worker: Cancelled at step 2")
+ return
+
+ self.progress_update.emit(_("2/8 Loading audio"))
+ audio_waveform = faster_whisper.decode_audio(self.transcription.file)
+
+ # Step 2 - Forced alignment
+ force_cpu = os.getenv("BUZZ_FORCE_CPU", "false")
+ use_cuda = torch.cuda.is_available() and force_cpu == "false"
+ device = "cuda" if use_cuda else "cpu"
+ torch_dtype = torch.float16 if use_cuda else torch.float32
+
+ logging.debug(f"Speaker identification worker: Using device={device}")
+
+ if self._is_cancelled:
+ logging.debug("Speaker identification worker: Cancelled at step 3")
+ return
+
+ self.progress_update.emit(_("3/8 Loading alignment model"))
+ alignment_model = None
+ alignment_tokenizer = None
+ for attempt in range(3):
+ try:
+ alignment_model, alignment_tokenizer = load_alignment_model(
+ device,
+ dtype=torch_dtype,
+ )
+ break
+ except Exception as e:
+ if attempt < 2:
+ logging.warning(
+ f"Speaker identification: Failed to load alignment model "
+ f"(attempt {attempt + 1}/3), retrying: {e}"
+ )
+ # On retry, try using cached models only (offline mode)
+ # Set at runtime by modifying the library constants directly
+ # (env vars are only read at import time)
+ try:
+ import huggingface_hub.constants
+ huggingface_hub.constants.HF_HUB_OFFLINE = True
+ logging.debug("Speaker identification: Enabled HF offline mode")
+ except Exception as offline_err:
+ logging.warning(f"Failed to set offline mode: {offline_err}")
+ self.progress_update.emit(
+ _("3/8 Loading alignment model (retrying with cache...)")
+ )
+ time.sleep(2 ** attempt) # 1s, 2s backoff
+ else:
+ raise RuntimeError(
+ _("Failed to load alignment model. "
+ "Please check your internet connection and try again.")
+ ) from e
+
+ if self._is_cancelled:
+ logging.debug("Speaker identification worker: Cancelled at step 4")
+ return
+
+ self.progress_update.emit(_("4/8 Processing audio"))
+ logging.debug("Speaker identification worker: Generating emissions")
+ emissions, stride = generate_emissions(
+ alignment_model,
+ torch.from_numpy(audio_waveform)
+ .to(alignment_model.dtype)
+ .to(alignment_model.device),
+ batch_size=1 if device == "cpu" else 8,
+ )
+ logging.debug("Speaker identification worker: Emissions generated")
+
+ # Clean up alignment model
+ del alignment_model
+ alignment_model = None
+ torch.cuda.empty_cache()
+
+ if self._is_cancelled:
+ logging.debug("Speaker identification worker: Cancelled at step 5")
+ return
+
+ self.progress_update.emit(_("5/8 Preparing transcripts"))
+ tokens_starred, text_starred = preprocess_text(
+ full_transcript,
+ romanize=True,
+ language=langs_to_iso[language],
+ )
+
+ segments, scores, blank_token = get_alignments(
+ emissions,
+ tokens_starred,
+ alignment_tokenizer,
+ )
+
+ spans = get_spans(tokens_starred, segments, blank_token)
+
+ word_timestamps = postprocess_results(text_starred, spans, stride, scores)
+
+ if self._is_cancelled:
+ logging.debug("Speaker identification worker: Cancelled at step 6")
+ return
+
+ # Step 3 - Diarization
+ self.progress_update.emit(_("6/8 Identifying speakers"))
+
+ # Silence NeMo's verbose logging
+ logging.getLogger("nemo_logging").setLevel(logging.ERROR)
+ try:
+ # Also try to silence NeMo's internal logging system
+ from nemo.utils import logging as nemo_logging
+ nemo_logging.setLevel(logging.ERROR)
+ except (ImportError, AttributeError):
+ pass
+
+ logging.debug("Speaker identification worker: Creating diarizer model")
+ diarizer_model = MSDDDiarizer(device)
+ logging.debug("Speaker identification worker: Running diarization (this may take a while on CPU)")
+ speaker_ts = diarizer_model.diarize(torch.from_numpy(audio_waveform).unsqueeze(0))
+ logging.debug("Speaker identification worker: Diarization complete")
+
+ if self._is_cancelled:
+ logging.debug("Speaker identification worker: Cancelled after diarization")
+ return
+
+ # Clean up diarizer model immediately after use
+ del diarizer_model
+ diarizer_model = None
+ torch.cuda.empty_cache()
+
+ if self._is_cancelled:
+ logging.debug("Speaker identification worker: Cancelled at step 7")
+ return
+
+ # Step 4 - Reading timestamps <> Speaker Labels mapping
+ self.progress_update.emit(_("7/8 Mapping speakers to transcripts"))
+
+ wsm = get_words_speaker_mapping(word_timestamps, speaker_ts, "start")
+
+ if language in punct_model_langs:
+ # restoring punctuation in the transcript to help realign the sentences
+ punct_model = PunctuationModel(model="kredor/punctuate-all")
+
+ words_list = list(map(lambda x: x["word"], wsm))
+
+ # Process in batches to avoid chunk size errors
+ def predict_wrapper(batch, chunk_size, **kwargs):
+ return punct_model.predict(batch, chunk_size=chunk_size)
+
+ labled_words = process_in_batches(
+ items=words_list,
+ process_func=predict_wrapper
+ )
+
+ ending_puncts = ".?!。!?"
+ model_puncts = ".,;:!?。!?"
+
+ # We don't want to punctuate U.S.A. with a period. Right?
+ is_acronym = lambda x: re.fullmatch(r"\b(?:[a-zA-Z]\.){2,}", x)
+
+ for word_dict, labeled_tuple in zip(wsm, labled_words):
+ word = word_dict["word"]
+ if (
+ word
+ and labeled_tuple[1] in ending_puncts
+ and (word[-1] not in model_puncts or is_acronym(word))
+ ):
+ word += labeled_tuple[1]
+ if word.endswith(".."):
+ word = word.rstrip(".")
+ word_dict["word"] = word
+
+ else:
+ logging.warning(
+ f"Punctuation restoration is not available for {language} language."
+ " Using the original punctuation."
+ )
+
+ wsm = get_realigned_ws_mapping_with_punctuation(wsm)
+ ssm = get_sentences_speaker_mapping(wsm, speaker_ts)
+
+ logging.debug("Speaker identification worker: Finished successfully")
+ self.progress_update.emit(_("8/8 Identification done"))
+ self.finished.emit(ssm)
+
+ except Exception as e:
+ logging.error(f"Speaker identification worker: Error - {e}", exc_info=True)
+ self.progress_update.emit(_("0/0 Error identifying speakers"))
+ self.error.emit(str(e))
+ # Emit empty list so the UI can reset properly
+ self.finished.emit([])
+
+ finally:
+ # Ensure cleanup happens regardless of how we exit
+ logging.debug("Speaker identification worker: Cleaning up resources")
+ if diarizer_model is not None:
+ try:
+ del diarizer_model
+ except Exception:
+ pass
+ if alignment_model is not None:
+ try:
+ del alignment_model
+ except Exception:
+ pass
+ torch.cuda.empty_cache()
+ # Reset offline mode so it doesn't affect other operations
+ try:
+ import huggingface_hub.constants
+ huggingface_hub.constants.HF_HUB_OFFLINE = False
+ except Exception:
+ pass
+
+
+class SpeakerIdentificationWidget(QWidget):
+ resize_button_clicked = pyqtSignal()
+ transcription: Transcription
+ settings = Settings()
+
+ def __init__(
+ self,
+ transcription: Transcription,
+ transcription_service: TranscriptionService,
+ parent: Optional["QWidget"] = None,
+ flags: Qt.WindowType = Qt.WindowType.Widget,
+ transcriptions_updated_signal: Optional[pyqtSignal] = None,
+ ) -> None:
+ super().__init__(parent, flags)
+ self.transcription = transcription
+ self.transcription_service = transcription_service
+ self.transcriptions_updated_signal = transcriptions_updated_signal
+
+ self.identification_result = None
+
+ self.thread = None
+ self.worker = None
+ self.needs_layout_update = False
+
+ self.setMinimumWidth(650)
+ self.setMinimumHeight(400)
+
+ self.setWindowTitle(file_path_as_title(transcription.file))
+
+ layout = QFormLayout(self)
+ layout.setSizeConstraint(QLayout.SizeConstraint.SetMinAndMaxSize)
+
+ # Step 1: Identify speakers
+ step_1_label = QLabel(_("Step 1: Identify speakers"), self)
+ font = step_1_label.font()
+ font.setWeight(QFont.Weight.Bold)
+ step_1_label.setFont(font)
+ layout.addRow(step_1_label)
+
+ step_1_group_box = QGroupBox(self)
+ step_1_group_box.setSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Expanding)
+ step_1_layout = QVBoxLayout(step_1_group_box)
+
+ self.step_1_row = QHBoxLayout()
+
+ self.step_1_button = QPushButton(_("Identify"))
+ self.step_1_button.setMinimumWidth(200)
+ self.step_1_button.clicked.connect(self.on_identify_button_clicked)
+
+ self.cancel_button = QPushButton(_("Cancel"))
+ self.cancel_button.setMinimumWidth(200)
+ self.cancel_button.setVisible(False)
+ self.cancel_button.clicked.connect(self.on_cancel_button_clicked)
+
+ # Progress container with label and bar
+ progress_container = QVBoxLayout()
+
+ self.progress_label = QLabel(self)
+ if os.path.isfile(self.transcription.file):
+ self.progress_label.setText(_("Ready to identify speakers"))
+ else:
+ self.progress_label.setText(_("Audio file not found"))
+ self.step_1_button.setEnabled(False)
+
+ self.progress_bar = QProgressBar(self)
+ self.progress_bar.setMinimumWidth(400)
+ self.progress_bar.setRange(0, 8)
+ self.progress_bar.setValue(0)
+
+ progress_container.addWidget(self.progress_label)
+ progress_container.addWidget(self.progress_bar)
+
+ self.step_1_row.addLayout(progress_container)
+
+ button_container = QVBoxLayout()
+ button_container.addWidget(self.step_1_button)
+ button_container.addWidget(self.cancel_button)
+ self.step_1_row.addLayout(button_container)
+
+ step_1_layout.addLayout(self.step_1_row)
+
+ layout.addRow(step_1_group_box)
+
+ # Spacer
+ spacer = QSpacerItem(0, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
+ layout.addItem(spacer)
+
+ # Step 2: Name speakers
+ step_2_label = QLabel(_("Step 2: Name speakers"), self)
+ font = step_2_label.font()
+ font.setWeight(QFont.Weight.Bold)
+ step_2_label.setFont(font)
+ layout.addRow(step_2_label)
+
+ self.step_2_group_box = QGroupBox(self)
+ self.step_2_group_box.setSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Expanding)
+ self.step_2_group_box.setEnabled(False)
+ step_2_layout = QVBoxLayout(self.step_2_group_box)
+
+ self.speaker_preview_row = QVBoxLayout()
+
+ self.speaker_0_input = LineEdit("Speaker 0", self)
+
+ self.speaker_0_preview_button = QPushButton(_("Play sample"))
+ self.speaker_0_preview_button.setMinimumWidth(200)
+ self.speaker_0_preview_button.clicked.connect(lambda: self.on_speaker_preview("Speaker 0"))
+
+ speaker_0_layout = QHBoxLayout()
+ speaker_0_layout.addWidget(self.speaker_0_input)
+ speaker_0_layout.addWidget(self.speaker_0_preview_button)
+
+ self.speaker_preview_row.addLayout(speaker_0_layout)
+
+ step_2_layout.addLayout(self.speaker_preview_row)
+
+ layout.addRow(self.step_2_group_box)
+
+ # Save button
+ self.merge_speaker_sentences = QCheckBox(_("Merge speaker sentences"))
+ self.merge_speaker_sentences.setChecked(True)
+ self.merge_speaker_sentences.setEnabled(False)
+ self.merge_speaker_sentences.setMinimumWidth(250)
+
+ self.save_button = QPushButton(_("Save"))
+ self.save_button.setEnabled(False)
+ self.save_button.clicked.connect(self.on_save_button_clicked)
+
+ layout.addRow(self.merge_speaker_sentences)
+ layout.addRow(self.save_button)
+
+ self.setLayout(layout)
+
+ # Invisible preview player
+ url = QUrl.fromLocalFile(self.transcription.file)
+ self.player = QMediaPlayer()
+ self.audio_output = QAudioOutput()
+ self.player.setAudioOutput(self.audio_output)
+ self.player.setSource(url)
+ self.player_timer = None
+
+ def on_identify_button_clicked(self):
+ self.step_1_button.setEnabled(False)
+ self.step_1_button.setVisible(False)
+ self.cancel_button.setVisible(True)
+
+ # Clean up any existing thread before starting a new one
+ self._cleanup_thread()
+
+ logging.debug("Speaker identification: Starting identification thread")
+
+ self.thread = QThread()
+ self.worker = IdentificationWorker(
+ self.transcription,
+ self.transcription_service
+ )
+ self.worker.moveToThread(self.thread)
+ self.thread.started.connect(self.worker.run)
+ self.worker.finished.connect(self._on_thread_finished)
+ self.worker.progress_update.connect(self.on_progress_update)
+ self.worker.error.connect(self.on_identification_error)
+
+ self.thread.start()
+
+ def on_cancel_button_clicked(self):
+ """Handle cancel button click."""
+ logging.debug("Speaker identification: Cancel requested by user")
+ self.cancel_button.setEnabled(False)
+ self.progress_label.setText(_("Cancelling..."))
+ self._cleanup_thread()
+ self._reset_buttons()
+ self.progress_label.setText(_("Cancelled"))
+ self.progress_bar.setValue(0)
+
+ def _reset_buttons(self):
+ """Reset identify/cancel buttons to initial state."""
+ self.step_1_button.setVisible(True)
+ self.step_1_button.setEnabled(True)
+ self.cancel_button.setVisible(False)
+ self.cancel_button.setEnabled(True)
+
+ def _on_thread_finished(self, result):
+ """Handle thread completion and cleanup."""
+ logging.debug("Speaker identification: Thread finished")
+ if self.thread is not None:
+ self.thread.quit()
+ self.thread.wait(5000)
+ self._reset_buttons()
+ self.on_identification_finished(result)
+
+ def on_identification_error(self, error_message):
+ """Handle identification error."""
+ logging.error(f"Speaker identification error: {error_message}")
+ self._reset_buttons()
+ self.progress_bar.setValue(0)
+
+ def on_progress_update(self, progress):
+ self.progress_label.setText(progress)
+
+ progress_value = 0
+ if progress and progress[0].isdigit():
+ progress_value = int(progress[0])
+ self.progress_bar.setValue(progress_value)
+ else:
+ logging.error(f"Invalid progress format: {progress}")
+
+ if progress_value == 8:
+ self.step_2_group_box.setEnabled(True)
+ self.merge_speaker_sentences.setEnabled(True)
+ self.save_button.setEnabled(True)
+
+ def on_identification_finished(self, result):
+ self.identification_result = result
+
+ # Handle empty results (error case)
+ if not result:
+ logging.debug("Speaker identification: Empty result received")
+ return
+
+ unique_speakers = {entry['speaker'] for entry in result}
+
+ while self.speaker_preview_row.count():
+ item = self.speaker_preview_row.takeAt(0)
+ widget = item.widget()
+ if widget:
+ widget.deleteLater()
+ else:
+ layout = item.layout()
+ if layout:
+ while layout.count():
+ sub_item = layout.takeAt(0)
+ sub_widget = sub_item.widget()
+ if sub_widget:
+ sub_widget.deleteLater()
+
+ for speaker in sorted(unique_speakers):
+ speaker_input = LineEdit(speaker, self)
+ speaker_input.setMinimumWidth(200)
+
+ speaker_preview_button = QPushButton(_("Play sample"))
+ speaker_preview_button.setMinimumWidth(200)
+ speaker_preview_button.clicked.connect(lambda checked, s=speaker: self.on_speaker_preview(s))
+
+ speaker_layout = QHBoxLayout()
+ speaker_layout.addWidget(speaker_input)
+ speaker_layout.addWidget(speaker_preview_button)
+
+ self.speaker_preview_row.addLayout(speaker_layout)
+
+ # Trigger layout update to properly size the new widgets
+ self.layout().activate()
+ self.adjustSize()
+ # Schedule update if window is minimized
+ self.needs_layout_update = True
+
+ def on_speaker_preview(self, speaker_id):
+ if self.player_timer:
+ self.player_timer.stop()
+
+ speaker_records = [record for record in self.identification_result if record['speaker'] == speaker_id]
+
+ if speaker_records:
+ random_record = random.choice(speaker_records)
+
+ start_time = random_record['start_time']
+ end_time = random_record['end_time']
+
+ self.player.setPosition(int(start_time))
+ self.player.play()
+
+ self.player_timer = QTimer(self)
+ self.player_timer.setSingleShot(True)
+ self.player_timer.timeout.connect(self.player.stop)
+ self.player_timer.start(min(end_time, 10 * 1000)) # 10 seconds
+
+ def on_save_button_clicked(self):
+ speaker_names = []
+ for i in range(self.speaker_preview_row.count()):
+ item = self.speaker_preview_row.itemAt(i)
+ if item.layout():
+ for j in range(item.layout().count()):
+ sub_item = item.layout().itemAt(j)
+ widget = sub_item.widget()
+ if isinstance(widget, LineEdit):
+ speaker_names.append(widget.text())
+
+ unique_speakers = {entry['speaker'] for entry in self.identification_result}
+ original_speakers = sorted(unique_speakers)
+ speaker_mapping = dict(zip(original_speakers, speaker_names))
+
+ segments = []
+ if self.merge_speaker_sentences.isChecked():
+ previous_segment = None
+
+ for entry in self.identification_result:
+ speaker_name = speaker_mapping.get(entry['speaker'], entry['speaker'])
+
+ if previous_segment and previous_segment['speaker'] == speaker_name:
+ previous_segment['end_time'] = entry['end_time']
+ previous_segment['text'] += " " + entry['text']
+ else:
+ if previous_segment:
+ segment = Segment(
+ start=previous_segment['start_time'],
+ end=previous_segment['end_time'],
+ text=f"{previous_segment['speaker']}: {previous_segment['text']}"
+ )
+ segments.append(segment)
+ previous_segment = {
+ 'start_time': entry['start_time'],
+ 'end_time': entry['end_time'],
+ 'speaker': speaker_name,
+ 'text': entry['text']
+ }
+
+ if previous_segment:
+ segment = Segment(
+ start=previous_segment['start_time'],
+ end=previous_segment['end_time'],
+ text=f"{previous_segment['speaker']}: {previous_segment['text']}"
+ )
+ segments.append(segment)
+ else:
+ for entry in self.identification_result:
+ speaker_name = speaker_mapping.get(entry['speaker'], entry['speaker'])
+ segment = Segment(
+ start=entry['start_time'],
+ end=entry['end_time'],
+ text=f"{speaker_name}: {entry['text']}"
+ )
+ segments.append(segment)
+
+ new_transcript_id = self.transcription_service.copy_transcription(
+ self.transcription.id_as_uuid
+ )
+
+ self.transcription_service.update_transcription_as_completed(new_transcript_id, segments)
+
+ # TODO - See if we can get rows in the transcription viewer to be of variable height
+ # If text is longer they should expand
+ if self.transcriptions_updated_signal:
+ self.transcriptions_updated_signal.emit(new_transcript_id)
+
+ self.player.stop()
+
+ if self.player_timer:
+ self.player_timer.stop()
+
+ self.close()
+
+ def changeEvent(self, event):
+ super().changeEvent(event)
+
+ # Handle window activation (restored from minimized or brought to front)
+ if self.needs_layout_update:
+ self.layout().activate()
+ self.adjustSize()
+ self.needs_layout_update = False
+
+ def closeEvent(self, event):
+ self.hide()
+
+ # Stop media player
+ self.player.stop()
+ if self.player_timer:
+ self.player_timer.stop()
+
+ # Clean up thread if running
+ self._cleanup_thread()
+
+ super().closeEvent(event)
+
+ def _cleanup_thread(self):
+ """Properly clean up the worker thread."""
+ if self.worker is not None:
+ # Request cancellation first
+ self.worker.cancel()
+
+ if self.thread is not None and self.thread.isRunning():
+ logging.debug("Speaker identification: Stopping running thread")
+ self.thread.quit()
+ if not self.thread.wait(10000): # Wait up to 10 seconds
+ logging.warning("Speaker identification: Thread did not quit, terminating")
+ self.thread.terminate()
+ if not self.thread.wait(2000):
+ logging.error("Speaker identification: Thread failed to terminate")
+
+ self.thread = None
+ self.worker = None
diff --git a/buzz/widgets/transcription_viewer/transcription_resizer_widget.py b/buzz/widgets/transcription_viewer/transcription_resizer_widget.py
new file mode 100644
index 00000000..08f3cb48
--- /dev/null
+++ b/buzz/widgets/transcription_viewer/transcription_resizer_widget.py
@@ -0,0 +1,444 @@
+import re
+import os
+import logging
+import stable_whisper
+import srt
+from pathlib import Path
+from srt_equalizer import srt_equalizer
+from typing import Optional
+from PyQt6.QtCore import Qt, QThread, QObject, pyqtSignal
+from PyQt6.QtGui import QFont
+from PyQt6.QtWidgets import (
+ QWidget,
+ QFormLayout,
+ QVBoxLayout,
+ QHBoxLayout,
+ QLabel,
+ QSpinBox,
+ QPushButton,
+ QCheckBox,
+ QGroupBox,
+ QSpacerItem,
+ QSizePolicy,
+)
+from buzz.locale import _, languages
+from buzz import whisper_audio
+from buzz.db.entity.transcription import Transcription
+from buzz.db.service.transcription_service import TranscriptionService
+from buzz.paths import file_path_as_title
+from buzz.settings.settings import Settings
+from buzz.widgets.line_edit import LineEdit
+from buzz.transcriber.transcriber import Segment
+from buzz.widgets.preferences_dialog.models.file_transcription_preferences import (
+ FileTranscriptionPreferences,
+)
+
+
+SENTENCE_END = re.compile(r'.*[.!?。!?]')
+
+# Languages that don't use spaces between words
+NON_SPACE_LANGUAGES = {"zh", "ja", "th", "lo", "km", "my"}
+
+class TranscriptionWorker(QObject):
+ finished = pyqtSignal(list)
+
+ def __init__(self, transcription, transcription_options, transcription_service, regroup_string: str):
+ super().__init__()
+ self.transcription = transcription
+ self.transcription_options = transcription_options
+ self.transcription_service = transcription_service
+ self.regroup_string = regroup_string
+
+ def get_transcript(self, audio, **kwargs) -> dict:
+ buzz_segments = self.transcription_service.get_transcription_segments(
+ transcription_id=self.transcription.id_as_uuid
+ )
+
+ # Check if the language uses spaces between words
+ language = self.transcription.language or ""
+ is_non_space_language = language in NON_SPACE_LANGUAGES
+
+ # For non-space languages, don't add spaces between words
+ separator = "" if is_non_space_language else " "
+
+ segments = []
+ words = []
+ text = ""
+ for buzz_segment in buzz_segments:
+ words.append({
+ 'word': buzz_segment.text + separator,
+ 'start': buzz_segment.start_time / 100,
+ 'end': buzz_segment.end_time / 100,
+ })
+ text += buzz_segment.text + separator
+
+ if SENTENCE_END.match(buzz_segment.text):
+ segments.append({
+ 'text': text,
+ 'words': words
+ })
+ words = []
+ text = ""
+
+ # Add any remaining words that weren't terminated by sentence-ending punctuation
+ if words:
+ segments.append({
+ 'text': text,
+ 'words': words
+ })
+
+ return {
+ 'language': self.transcription.language,
+ 'segments': segments
+ }
+
+ def run(self):
+ transcription_file = self.transcription.file
+ transcription_file_exists = os.path.exists(transcription_file)
+
+ transcription_file_path = Path(transcription_file)
+ speech_path = transcription_file_path.with_name(f"{transcription_file_path.stem}_speech.mp3")
+ if self.transcription_options.extract_speech and os.path.exists(speech_path):
+ transcription_file = str(speech_path)
+ transcription_file_exists = True
+ # TODO - Fix VAD and Silence suppression that fails to work/download Vad model in compilded form on Mac and Windows
+
+ try:
+ result = stable_whisper.transcribe_any(
+ self.get_transcript,
+ audio = whisper_audio.load_audio(transcription_file),
+ input_sr=whisper_audio.SAMPLE_RATE,
+ # vad=transcription_file_exists,
+ # suppress_silence=transcription_file_exists,
+ vad=False,
+ suppress_silence=False,
+ regroup=self.regroup_string,
+ check_sorted=False,
+ )
+ except Exception as e:
+ logging.error(f"Error in TranscriptionWorker: {e}")
+ return
+
+ segments = []
+ for segment in result.segments:
+ segments.append(
+ Segment(
+ start=int(segment.start * 100),
+ end=int(segment.end * 100),
+ text=segment.text
+ )
+ )
+
+ self.finished.emit(segments)
+
+
+class TranscriptionResizerWidget(QWidget):
+ resize_button_clicked = pyqtSignal()
+ transcription: Transcription
+ settings = Settings()
+
+ def __init__(
+ self,
+ transcription: Transcription,
+ transcription_service: TranscriptionService,
+ parent: Optional["QWidget"] = None,
+ flags: Qt.WindowType = Qt.WindowType.Widget,
+ transcriptions_updated_signal: Optional[pyqtSignal] = None,
+ ) -> None:
+ super().__init__(parent, flags)
+ self.transcription = transcription
+ self.transcription_service = transcription_service
+ self.transcriptions_updated_signal = transcriptions_updated_signal
+
+ self.new_transcript_id = None
+ self.thread = None
+ self.worker = None
+
+ self.setMinimumWidth(600)
+ self.setMinimumHeight(300)
+
+ self.setWindowTitle(file_path_as_title(transcription.file))
+
+ preferences = self.load_preferences()
+
+ (
+ self.transcription_options,
+ self.file_transcription_options,
+ ) = preferences.to_transcription_options(
+ openai_access_token=''
+ )
+
+ layout = QFormLayout(self)
+
+ # Extend segment endings
+ extend_label = QLabel(_("Extend end time"), self)
+ font = extend_label.font()
+ font.setWeight(QFont.Weight.Bold)
+ extend_label.setFont(font)
+ layout.addRow(extend_label)
+
+ extend_group_box = QGroupBox(self)
+ extend_layout = QVBoxLayout(extend_group_box)
+
+ self.extend_row = QHBoxLayout()
+
+ self.extend_amount_label = QLabel(_("Extend endings by up to (seconds)"), self)
+
+ self.extend_amount_input = LineEdit("0.2", self)
+ self.extend_amount_input.setMaximumWidth(60)
+
+ self.extend_button = QPushButton(_("Extend endings"))
+ self.extend_button.clicked.connect(self.on_extend_button_clicked)
+
+ self.extend_row.addWidget(self.extend_amount_label)
+ self.extend_row.addWidget(self.extend_amount_input)
+ self.extend_row.addWidget(self.extend_button)
+
+ extend_layout.addLayout(self.extend_row)
+
+ layout.addRow(extend_group_box)
+
+ # Spacer
+ spacer1 = QSpacerItem(0, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
+ layout.addItem(spacer1)
+
+ # Resize longer subtitles
+ resize_label = QLabel(_("Resize Options"), self)
+ font = resize_label.font()
+ font.setWeight(QFont.Weight.Bold)
+ resize_label.setFont(font)
+ layout.addRow(resize_label)
+
+ resize_group_box = QGroupBox(self)
+ resize_layout = QVBoxLayout(resize_group_box)
+
+ self.resize_row = QHBoxLayout()
+
+ self.desired_subtitle_length_label = QLabel(_("Desired subtitle length"), self)
+
+ self.target_chars_spin_box = QSpinBox(self)
+ self.target_chars_spin_box.setMinimum(1)
+ self.target_chars_spin_box.setMaximum(100)
+ self.target_chars_spin_box.setValue(42)
+
+ self.resize_button = QPushButton(_("Resize"))
+ self.resize_button.clicked.connect(self.on_resize_button_clicked)
+
+ self.resize_row.addWidget(self.desired_subtitle_length_label)
+ self.resize_row.addWidget(self.target_chars_spin_box)
+ self.resize_row.addWidget(self.resize_button)
+
+ resize_layout.addLayout(self.resize_row)
+
+ resize_group_box.setEnabled(self.transcription.word_level_timings != 1)
+ if self.transcription.word_level_timings == 1:
+ resize_group_box.setToolTip(_("Available only if word level timings were disabled during transcription"))
+
+ layout.addRow(resize_group_box)
+
+ # Spacer
+ spacer2 = QSpacerItem(0, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
+ layout.addItem(spacer2)
+
+ # Merge words into subtitles
+ merge_options_label = QLabel(_("Merge Options"), self)
+ font = merge_options_label.font()
+ font.setWeight(QFont.Weight.Bold)
+ merge_options_label.setFont(font)
+ layout.addRow(merge_options_label)
+
+ merge_options_group_box = QGroupBox(self)
+ merge_options_layout = QVBoxLayout(merge_options_group_box)
+
+ self.merge_options_row = QVBoxLayout()
+
+ self.merge_by_gap = QCheckBox(_("Merge by gap"))
+ self.merge_by_gap.setChecked(True)
+ self.merge_by_gap.setMinimumWidth(250)
+ self.merge_by_gap_input = LineEdit("0.2", self)
+ merge_by_gap_layout = QHBoxLayout()
+ merge_by_gap_layout.addWidget(self.merge_by_gap)
+ merge_by_gap_layout.addWidget(self.merge_by_gap_input)
+
+ self.split_by_punctuation = QCheckBox(_("Split by punctuation"))
+ self.split_by_punctuation.setChecked(True)
+ self.split_by_punctuation.setMinimumWidth(250)
+ self.split_by_punctuation_input = LineEdit(".* /./. /。/?/? /?/!/! /!/,/, ", self)
+ split_by_punctuation_layout = QHBoxLayout()
+ split_by_punctuation_layout.addWidget(self.split_by_punctuation)
+ split_by_punctuation_layout.addWidget(self.split_by_punctuation_input)
+
+ self.split_by_max_length = QCheckBox(_("Split by max length"))
+ self.split_by_max_length.setChecked(True)
+ self.split_by_max_length.setMinimumWidth(250)
+ self.split_by_max_length_input = LineEdit("42", self)
+ split_by_max_length_layout = QHBoxLayout()
+ split_by_max_length_layout.addWidget(self.split_by_max_length)
+ split_by_max_length_layout.addWidget(self.split_by_max_length_input)
+
+ self.merge_options_row.addLayout(merge_by_gap_layout)
+ self.merge_options_row.addLayout(split_by_punctuation_layout)
+ self.merge_options_row.addLayout(split_by_max_length_layout)
+
+ self.merge_button = QPushButton(_("Merge"))
+ self.merge_button.clicked.connect(self.on_merge_button_clicked)
+
+ self.merge_options_row.addWidget(self.merge_button)
+
+ merge_options_layout.addLayout(self.merge_options_row)
+
+ merge_options_group_box.setEnabled(self.transcription.word_level_timings == 1)
+ if self.transcription.word_level_timings != 1:
+ merge_options_group_box.setToolTip(_("Available only if word level timings were enabled during transcription"))
+
+ layout.addRow(merge_options_group_box)
+
+ self.setLayout(layout)
+
+ def load_preferences(self):
+ self.settings.settings.beginGroup("file_transcriber")
+ preferences = FileTranscriptionPreferences.load(settings=self.settings.settings)
+ self.settings.settings.endGroup()
+ return preferences
+
+ def on_resize_button_clicked(self):
+ segments = self.transcription_service.get_transcription_segments(
+ transcription_id=self.transcription.id_as_uuid
+ )
+
+ subs = []
+ for segment in segments:
+ subtitle = srt.Subtitle(
+ index=segment.id,
+ start=segment.start_time,
+ end=segment.end_time,
+ content=segment.text
+ )
+ subs.append(subtitle)
+
+ resized_subs = []
+ last_index = 0
+
+ # Limit each subtitle to a maximum character length, splitting into
+ # multiple subtitle items if necessary.
+ for sub in subs:
+ new_subs = srt_equalizer.split_subtitle(
+ sub=sub, target_chars=self.target_chars_spin_box.value(), start_from_index=last_index, method="punctuation")
+ last_index = new_subs[-1].index
+ resized_subs.extend(new_subs)
+
+ segments = [
+ Segment(
+ round(sub.start),
+ round(sub.end),
+ sub.content
+ )
+ for sub in resized_subs
+ if round(sub.start) != round(sub.end)
+ ]
+
+ new_transcript_id = self.transcription_service.copy_transcription(
+ self.transcription.id_as_uuid
+ )
+ self.transcription_service.update_transcription_as_completed(new_transcript_id, segments)
+
+ if self.transcriptions_updated_signal:
+ self.transcriptions_updated_signal.emit(new_transcript_id)
+
+ def on_extend_button_clicked(self):
+ try:
+ extend_amount_seconds = float(self.extend_amount_input.text())
+ except ValueError:
+ extend_amount_seconds = 0.2
+
+ # Convert seconds to milliseconds (internal time unit)
+ extend_amount = int(extend_amount_seconds * 1000)
+
+ segments = self.transcription_service.get_transcription_segments(
+ transcription_id=self.transcription.id_as_uuid
+ )
+
+ extended_segments = []
+ for i, segment in enumerate(segments):
+ new_end = segment.end_time + extend_amount
+
+ # Ensure segment end doesn't exceed start of next segment
+ if i < len(segments) - 1:
+ next_start = segments[i + 1].start_time
+ new_end = min(new_end, next_start)
+
+ extended_segments.append(
+ Segment(
+ start=segment.start_time,
+ end=new_end,
+ text=segment.text
+ )
+ )
+
+ new_transcript_id = self.transcription_service.copy_transcription(
+ self.transcription.id_as_uuid
+ )
+ self.transcription_service.update_transcription_as_completed(new_transcript_id, extended_segments)
+
+ if self.transcriptions_updated_signal:
+ self.transcriptions_updated_signal.emit(new_transcript_id)
+
+ def on_merge_button_clicked(self):
+ self.new_transcript_id = self.transcription_service.copy_transcription(
+ self.transcription.id_as_uuid
+ )
+ self.transcription_service.update_transcription_progress(self.new_transcript_id, 0.0)
+
+ if self.transcriptions_updated_signal:
+ self.transcriptions_updated_signal.emit(self.new_transcript_id)
+
+ regroup_string = ''
+ if self.merge_by_gap.isChecked():
+ regroup_string += f'mg={self.merge_by_gap_input.text()}'
+
+ if self.split_by_max_length.isChecked():
+ regroup_string += f'++{self.split_by_max_length_input.text()}+1'
+
+ if self.split_by_punctuation.isChecked():
+ if regroup_string:
+ regroup_string += '_'
+ regroup_string += f'sp={self.split_by_punctuation_input.text()}'
+
+ if self.split_by_max_length.isChecked():
+ if regroup_string:
+ regroup_string += '_'
+ regroup_string += f'sl={self.split_by_max_length_input.text()}'
+
+ regroup_string = os.getenv("BUZZ_MERGE_REGROUP_RULE", regroup_string)
+
+ self.hide()
+
+ self.thread = QThread()
+ self.worker = TranscriptionWorker(
+ self.transcription,
+ self.transcription_options,
+ self.transcription_service,
+ regroup_string
+ )
+ self.worker.moveToThread(self.thread)
+ self.thread.started.connect(self.worker.run)
+ self.worker.finished.connect(self.thread.quit)
+ self.worker.finished.connect(self.worker.deleteLater)
+ self.thread.finished.connect(self.thread.deleteLater)
+ self.worker.finished.connect(self.on_transcription_completed)
+
+ self.thread.start()
+
+ def on_transcription_completed(self, segments):
+ if self.new_transcript_id is not None:
+ self.transcription_service.update_transcription_as_completed(self.new_transcript_id, segments)
+
+ if self.transcriptions_updated_signal:
+ self.transcriptions_updated_signal.emit(self.new_transcript_id)
+
+ self.close()
+
+ def closeEvent(self, event):
+ self.hide()
+
+ super().closeEvent(event)
diff --git a/buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py b/buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
index f2a5f00a..2d3e5014 100644
--- a/buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
+++ b/buzz/widgets/transcription_viewer/transcription_segments_editor_widget.py
@@ -4,7 +4,8 @@ from dataclasses import dataclass
from typing import Optional
from uuid import UUID
-from PyQt6.QtCore import pyqtSignal, Qt, QModelIndex, QItemSelection
+from PyQt6.QtCore import pyqtSignal, Qt, QModelIndex, QItemSelection, QEvent, QRegularExpression, QObject
+from PyQt6.QtGui import QRegularExpressionValidator
from PyQt6.QtSql import QSqlTableModel, QSqlRecord
from PyQt6.QtGui import QFontMetrics, QTextOption
from PyQt6.QtWidgets import (
@@ -13,6 +14,7 @@ from PyQt6.QtWidgets import (
QStyledItemDelegate,
QAbstractItemView,
QTextEdit,
+ QLineEdit,
)
from buzz.locale import _
@@ -37,16 +39,188 @@ class ColDef:
delegate: Optional[QStyledItemDelegate] = None
+def parse_timestamp(timestamp_str: str) -> Optional[int]:
+ """Parse timestamp string (HH:MM:SS.mmm) to milliseconds"""
+ try:
+ # Handle formats like "00:01:23.456" or "1:23.456" or "23.456"
+ parts = timestamp_str.strip().split(':')
+
+ if len(parts) == 3: # HH:MM:SS.mmm
+ hours = int(parts[0])
+ minutes = int(parts[1])
+ seconds_parts = parts[2].split('.')
+ elif len(parts) == 2: # MM:SS.mmm
+ hours = 0
+ minutes = int(parts[0])
+ seconds_parts = parts[1].split('.')
+ elif len(parts) == 1: # SS.mmm
+ hours = 0
+ minutes = 0
+ seconds_parts = parts[0].split('.')
+ else:
+ return None
+
+ seconds = int(seconds_parts[0])
+ milliseconds = int(seconds_parts[1]) if len(seconds_parts) > 1 else 0
+
+ total_ms = hours * 3600 * 1000 + minutes * 60 * 1000 + seconds * 1000 + milliseconds
+ return total_ms
+ except (ValueError, IndexError):
+ return None
+
+
+class TimeStampLineEdit(QLineEdit):
+ """Custom QLineEdit for timestamp editing with keyboard shortcuts"""
+
+ def __init__(self, parent=None):
+ super().__init__(parent)
+ self._milliseconds = 0
+
+ # Set up validator to only allow digits, colons, and dots
+ regex = QRegularExpression(r'^[0-9:.]*$')
+ validator = QRegularExpressionValidator(regex, self)
+ self.setValidator(validator)
+
+ def set_milliseconds(self, ms: int):
+ self._milliseconds = ms
+ self.setText(to_timestamp(ms))
+
+ def get_milliseconds(self) -> int:
+ parsed = parse_timestamp(self.text())
+ if parsed is not None:
+ return parsed
+ return self._milliseconds
+
+ def keyPressEvent(self, event):
+ if event.text() == '+':
+ self._milliseconds += 500 # Add 500ms (0.5 seconds)
+ self.setText(to_timestamp(self._milliseconds))
+ event.accept()
+ elif event.text() == '-':
+ self._milliseconds = max(0, self._milliseconds - 500) # Subtract 500ms
+ self.setText(to_timestamp(self._milliseconds))
+ event.accept()
+ else:
+ super().keyPressEvent(event)
+
+ def focusOutEvent(self, event):
+ # Strip any invalid characters and reformat on focus out
+ parsed = parse_timestamp(self.text())
+ if parsed is not None:
+ self._milliseconds = parsed
+ self.setText(to_timestamp(parsed))
+ else:
+ # If parsing failed, restore the last valid value
+ self.setText(to_timestamp(self._milliseconds))
+ super().focusOutEvent(event)
+
+
class TimeStampDelegate(QStyledItemDelegate):
def displayText(self, value, locale):
return to_timestamp(value)
+class TimeStampEditorDelegate(QStyledItemDelegate):
+ """Delegate for editing timestamps with overlap prevention"""
+
+ timestamp_editing = pyqtSignal(int, int, int) # Signal: (row, column, new_value_ms)
+
+ def createEditor(self, parent, option, index):
+ editor = TimeStampLineEdit(parent)
+ # Connect text changed signal to emit live updates
+ editor.textChanged.connect(lambda: self.on_editor_text_changed(editor, index))
+ return editor
+
+ def on_editor_text_changed(self, editor, index):
+ """Emit signal when editor text changes with the current value"""
+ new_value_ms = editor.get_milliseconds()
+ self.timestamp_editing.emit(index.row(), index.column(), new_value_ms)
+
+ def setEditorData(self, editor, index):
+ # Get value in milliseconds from database
+ value = index.model().data(index, Qt.ItemDataRole.EditRole)
+ if value is not None:
+ editor.set_milliseconds(value)
+
+ def setModelData(self, editor, model, index):
+ # Get value in milliseconds from editor
+ new_value_ms = editor.get_milliseconds()
+ current_row = index.row()
+ column = index.column()
+
+ # Get current segment's start and end
+ start_col = Column.START.value
+ end_col = Column.END.value
+
+ if column == start_col:
+ # Editing START time
+ end_time_ms = model.record(current_row).value("end_time")
+
+ if end_time_ms is None:
+ logging.warning("End time is None, cannot validate")
+ return
+
+ # Validate: start must be less than end
+ if new_value_ms >= end_time_ms:
+ logging.warning(f"Start time ({new_value_ms}) must be less than end time ({end_time_ms})")
+ return
+
+ # Check if new start overlaps with previous segment's end
+ if current_row > 0:
+ prev_end_time_ms = model.record(current_row - 1).value("end_time")
+ if prev_end_time_ms is not None and new_value_ms < prev_end_time_ms:
+ # Update previous segment's end to match new start
+ model.setData(model.index(current_row - 1, end_col), new_value_ms)
+
+ elif column == end_col:
+ # Editing END time
+ start_time_ms = model.record(current_row).value("start_time")
+
+ if start_time_ms is None:
+ logging.warning("Start time is None, cannot validate")
+ return
+
+ # Validate: end must be greater than start
+ if new_value_ms <= start_time_ms:
+ logging.warning(f"End time ({new_value_ms}) must be greater than start time ({start_time_ms})")
+ return
+
+ # Check if new end overlaps with next segment's start
+ if current_row < model.rowCount() - 1:
+ next_start_time_ms = model.record(current_row + 1).value("start_time")
+ if next_start_time_ms is not None and new_value_ms > next_start_time_ms:
+ # Update next segment's start to match new end
+ model.setData(model.index(current_row + 1, start_col), new_value_ms)
+
+ # Set the new value
+ model.setData(index, new_value_ms)
+
+ def displayText(self, value, locale):
+ return to_timestamp(value)
+
+
+class CustomTextEdit(QTextEdit):
+ """Custom QTextEdit that handles Tab/Enter/Esc keys to save and close editor"""
+
+ def __init__(self, parent=None):
+ super().__init__(parent)
+
+ def keyPressEvent(self, event):
+ # Tab, Enter, or Esc: save and close editor
+ if event.key() in (Qt.Key.Key_Tab, Qt.Key.Key_Return, Qt.Key.Key_Enter, Qt.Key.Key_Escape):
+ # Close the editor which will trigger setModelData to save
+ self.clearFocus()
+ event.accept()
+ else:
+ super().keyPressEvent(event)
+
+
class WordWrapDelegate(QStyledItemDelegate):
def createEditor(self, parent, option, index):
- editor = QTextEdit(parent)
+ editor = CustomTextEdit(parent)
editor.setWordWrapMode(QTextOption.WrapMode.WordWrap)
editor.setAcceptRichText(False)
+ editor.setTabChangesFocus(True)
return editor
@@ -61,16 +235,21 @@ class TranscriptionSegmentModel(QSqlTableModel):
self.setEditStrategy(QSqlTableModel.EditStrategy.OnFieldChange)
self.setFilter(f"transcription_id = '{transcription_id}'")
- def flags(self, index: QModelIndex):
- flags = super().flags(index)
- if index.column() in (Column.START.value, Column.END.value):
- flags &= ~Qt.ItemFlag.ItemIsEditable
- return flags
-
class TranscriptionSegmentsEditorWidget(QTableView):
PARENT_PADDINGS = 40
segment_selected = pyqtSignal(QSqlRecord)
+ timestamp_being_edited = pyqtSignal(int, int, int) # Signal: (row, column, new_value_ms)
+
+ def keyPressEvent(self, event):
+ # Allow Enter/Return to trigger editing
+ if event.key() in (Qt.Key.Key_Return, Qt.Key.Key_Enter):
+ current_index = self.currentIndex()
+ if current_index.isValid() and not self.state() == QAbstractItemView.State.EditingState:
+ self.edit(current_index)
+ event.accept()
+ return
+ super().keyPressEvent(event)
def __init__(
self,
@@ -80,18 +259,22 @@ class TranscriptionSegmentsEditorWidget(QTableView):
):
super().__init__(parent)
+ self._last_highlighted_row = -1
self.translator = translator
self.translator.translation.connect(self.update_translation)
model = TranscriptionSegmentModel(transcription_id=transcription_id)
self.setModel(model)
- timestamp_delegate = TimeStampDelegate()
+ timestamp_editor_delegate = TimeStampEditorDelegate()
+ # Connect delegate's signal to widget's signal
+ timestamp_editor_delegate.timestamp_editing.connect(self.timestamp_being_edited.emit)
+
word_wrap_delegate = WordWrapDelegate()
self.column_definitions: list[ColDef] = [
- ColDef("start", _("Start"), Column.START, delegate=timestamp_delegate),
- ColDef("end", _("End"), Column.END, delegate=timestamp_delegate),
+ ColDef("start", _("Start"), Column.START, delegate=timestamp_editor_delegate),
+ ColDef("end", _("End"), Column.END, delegate=timestamp_editor_delegate),
ColDef("text", _("Text"), Column.TEXT, delegate=word_wrap_delegate),
ColDef("translation", _("Translation"), Column.TRANSLATION, delegate=word_wrap_delegate),
]
@@ -115,6 +298,10 @@ class TranscriptionSegmentsEditorWidget(QTableView):
self.verticalHeader().hide()
self.setSelectionBehavior(QAbstractItemView.SelectionBehavior.SelectRows)
self.setSelectionMode(QTableView.SelectionMode.SingleSelection)
+ self.setEditTriggers(
+ QAbstractItemView.EditTrigger.EditKeyPressed |
+ QAbstractItemView.EditTrigger.DoubleClicked
+ )
self.selectionModel().selectionChanged.connect(self.on_selection_changed)
model.select()
model.rowsInserted.connect(self.init_row_height)
@@ -126,8 +313,8 @@ class TranscriptionSegmentsEditorWidget(QTableView):
self.init_row_height()
- self.setColumnWidth(Column.START.value, 95)
- self.setColumnWidth(Column.END.value, 95)
+ self.setColumnWidth(Column.START.value, 120)
+ self.setColumnWidth(Column.END.value, 120)
self.setWordWrap(True)
@@ -182,3 +369,17 @@ class TranscriptionSegmentsEditorWidget(QTableView):
def segments(self) -> list[QSqlRecord]:
return [self.model().record(i) for i in range(self.model().rowCount())]
+
+ def highlight_and_scroll_to_row(self, row_index: int):
+ """Highlight a specific row and scroll it into view"""
+ if 0 <= row_index < self.model().rowCount():
+ # Only set focus if we're actually moving to a different row to avoid audio crackling
+ if self._last_highlighted_row != row_index:
+ self.setFocus()
+ self._last_highlighted_row = row_index
+
+ # Select the row
+ self.selectRow(row_index)
+ # Scroll to the row with better positioning
+ model_index = self.model().index(row_index, 0)
+ self.scrollTo(model_index, QAbstractItemView.ScrollHint.PositionAtCenter)
diff --git a/buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py b/buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
index 24f7c94c..610f7d79 100644
--- a/buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
+++ b/buzz/widgets/transcription_viewer/transcription_view_mode_tool_button.py
@@ -1,3 +1,4 @@
+import logging
from enum import Enum
from typing import Optional
@@ -20,13 +21,22 @@ class ViewMode(Enum):
class TranscriptionViewModeToolButton(QToolButton):
view_mode_changed = pyqtSignal(ViewMode)
- def __init__(self, shortcuts: Shortcuts, parent: Optional[QWidget] = None):
+ def __init__(
+ self,
+ shortcuts: Shortcuts,
+ has_translation: bool,
+ translation: pyqtSignal,
+ parent: Optional[QWidget] = None
+ ):
super().__init__(parent)
self.setText(_("View"))
self.setIcon(VisibilityIcon(self))
self.setToolButtonStyle(Qt.ToolButtonStyle.ToolButtonTextBesideIcon)
- self.setPopupMode(QToolButton.ToolButtonPopupMode.InstantPopup)
+ self.setPopupMode(QToolButton.ToolButtonPopupMode.MenuButtonPopup)
+ self.setMinimumWidth(80)
+
+ translation.connect(self.on_translation_available)
menu = QMenu(self)
@@ -36,11 +46,12 @@ class TranscriptionViewModeToolButton(QToolButton):
lambda: self.view_mode_changed.emit(ViewMode.TEXT),
)
- menu.addAction(
+ self.translation_action = menu.addAction(
_("Translation"),
QKeySequence(shortcuts.get(Shortcut.VIEW_TRANSCRIPT_TRANSLATION)),
lambda: self.view_mode_changed.emit(ViewMode.TRANSLATION)
)
+ self.translation_action.setVisible(has_translation)
menu.addAction(
_("Timestamps"),
@@ -49,3 +60,7 @@ class TranscriptionViewModeToolButton(QToolButton):
)
self.setMenu(menu)
+ self.clicked.connect(self.showMenu)
+
+ def on_translation_available(self):
+ self.translation_action.setVisible(True)
diff --git a/buzz/widgets/transcription_viewer/transcription_viewer_widget.py b/buzz/widgets/transcription_viewer/transcription_viewer_widget.py
index b0ec6714..546936a6 100644
--- a/buzz/widgets/transcription_viewer/transcription_viewer_widget.py
+++ b/buzz/widgets/transcription_viewer/transcription_viewer_widget.py
@@ -1,36 +1,49 @@
+import os
import logging
+import platform
from typing import Optional
from uuid import UUID
-from PyQt6.QtCore import Qt, QThread, pyqtSignal
-from PyQt6.QtGui import QFont, QShowEvent
+from PyQt6.QtCore import Qt, QThread, pyqtSignal, QTimer
+from PyQt6.QtGui import QTextCursor
from PyQt6.QtMultimedia import QMediaPlayer
from PyQt6.QtSql import QSqlRecord
from PyQt6.QtWidgets import (
QWidget,
QVBoxLayout,
+ QHBoxLayout,
QToolButton,
QLabel,
QMessageBox,
- QInputDialog,
- QDialogButtonBox,
+ QLineEdit,
+ QPushButton,
+ QFrame,
+ QCheckBox,
+ QComboBox,
+ QScrollArea,
+ QSizePolicy,
+ QStackedWidget,
+ QSplitter
)
-import srt
-from srt_equalizer import srt_equalizer
-
from buzz.locale import _
from buzz.db.entity.transcription import Transcription
from buzz.db.service.transcription_service import TranscriptionService
from buzz.paths import file_path_as_title
from buzz.settings.shortcuts import Shortcuts
+from buzz.settings.shortcut import Shortcut
from buzz.settings.settings import Settings
from buzz.store.keyring_store import get_password, Key
+from buzz.transcriber.file_transcriber import is_video_file
from buzz.widgets.audio_player import AudioPlayer
+from buzz.widgets.video_player import VideoPlayer
from buzz.widgets.icon import (
FileDownloadIcon,
TranslateIcon,
ResizeIcon,
+ ScrollToCurrentIcon,
+ VisibilityIcon,
+ SpeakerIdentificationIcon,
)
from buzz.translator import Translator
from buzz.widgets.text_display_box import TextDisplayBox
@@ -50,16 +63,11 @@ from buzz.widgets.transcription_viewer.transcription_view_mode_tool_button impor
TranscriptionViewModeToolButton,
ViewMode
)
+from buzz.widgets.transcription_viewer.transcription_resizer_widget import TranscriptionResizerWidget
-
-class OkEnabledInputDialog(QInputDialog):
- def showEvent(self, event: QShowEvent) -> None:
- super().showEvent(event)
- button_box = self.findChild(QDialogButtonBox)
- if button_box:
- ok_button = button_box.button(QDialogButtonBox.StandardButton.Ok)
- if ok_button:
- ok_button.setEnabled(True)
+# Underlying libs do not support intel Macs
+if not (platform.system() == "Darwin" and platform.machine() == "x86_64"):
+ from buzz.widgets.transcription_viewer.speaker_identification_widget import SpeakerIdentificationWidget
class TranscriptionViewerWidget(QWidget):
@@ -74,20 +82,53 @@ class TranscriptionViewerWidget(QWidget):
shortcuts: Shortcuts,
parent: Optional["QWidget"] = None,
flags: Qt.WindowType = Qt.WindowType.Widget,
+ transcriptions_updated_signal: Optional[pyqtSignal] = None,
) -> None:
super().__init__(parent, flags)
self.transcription = transcription
self.transcription_service = transcription_service
+ self.shortcuts = shortcuts
self.setMinimumWidth(800)
self.setMinimumHeight(500)
self.setWindowTitle(file_path_as_title(transcription.file))
+ self.transcription_resizer_dialog = None
+ self.speaker_identification_dialog = None
+ self.transcriptions_updated_signal = transcriptions_updated_signal
+
self.translation_thread = None
self.translator = None
self.view_mode = ViewMode.TIMESTAMPS
+ # Search functionality
+ self.search_text = ""
+ self.current_search_index = 0
+ self.search_results = []
+ self.search_debounce_timer = QTimer()
+ self.search_debounce_timer.setSingleShot(True)
+ self.search_debounce_timer.timeout.connect(self.perform_search)
+
+ # Loop functionality
+ self.segment_looping_enabled = self.settings.settings.value(
+ "transcription_viewer/segment_looping_enabled", False, type=bool)
+ # UI visibility preferences
+ self.playback_controls_visible = self.settings.settings.value(
+ "transcription_viewer/playback_controls_visible", False, type=bool)
+ self.find_widget_visible = self.settings.settings.value(
+ "transcription_viewer/find_widget_visible", False, type=bool)
+
+ # Currently selected segment for loop functionality
+ self.currently_selected_segment = None
+
+ # Can't reuse this globally, as transcripts may get translated, so need to get them each time
+ segments = self.transcription_service.get_transcription_segments(
+ transcription_id=self.transcription.id_as_uuid
+ )
+ self.has_translations = any(segment.translation.strip()
+ for segment in segments)
+
self.openai_access_token = get_password(Key.OPENAI_API_KEY)
preferences = self.load_preferences()
@@ -125,31 +166,99 @@ class TranscriptionViewerWidget(QWidget):
parent=self
)
self.table_widget.segment_selected.connect(self.on_segment_selected)
+ self.table_widget.timestamp_being_edited.connect(
+ self.on_timestamp_being_edited)
self.text_display_box = TextDisplayBox(self)
- font = QFont(self.text_display_box.font().family(), 14)
- self.text_display_box.setFont(font)
+
+ # Determine if source is video
+ self.is_video = is_video_file(transcription.file) if transcription.file else False
self.audio_player = AudioPlayer(file_path=transcription.file)
+ self.video_player = None
+
+ # Stack widget is to switch between audio and video
+ self.media_player_stack = QStackedWidget()
+ self.media_player_stack.addWidget(self.audio_player)
+
+ # Only create video player if source is a video file
+ if self.is_video:
+ self.video_player = VideoPlayer(file_path=transcription.file)
+ self.media_player_stack.addWidget(self.video_player)
+
+ self.current_media_player = None
+ self.load_transcription_media()
+
+ # Connect audio player signals
self.audio_player.position_ms_changed.connect(
self.on_audio_player_position_ms_changed
)
- self.current_segment_label = QLabel("", self)
- self.current_segment_label.setAlignment(Qt.AlignmentFlag.AlignHCenter)
- self.current_segment_label.setContentsMargins(0, 0, 0, 10)
- self.current_segment_label.setWordWrap(True)
+ # Connect video player signals (only if video player exists)
+ if self.video_player:
+ self.video_player.position_ms_changed.connect(
+ self.on_audio_player_position_ms_changed
+ )
- font_metrics = self.current_segment_label.fontMetrics()
- max_height = font_metrics.lineSpacing() * 3
- self.current_segment_label.setMaximumHeight(max_height)
+ # Connect to playback state changes to automatically show controls
+ self.audio_player.media_player.playbackStateChanged.connect(
+ self.on_audio_playback_state_changed
+ )
+
+ if self.video_player:
+ self.video_player.media_player.playbackStateChanged.connect(
+ self.on_audio_playback_state_changed
+ )
+
+ # Create a better current segment display that handles long text
+ self.current_segment_frame = QFrame()
+ self.current_segment_frame.setFrameStyle(QFrame.Shape.NoFrame)
+
+ segment_layout = QVBoxLayout(self.current_segment_frame)
+ # Minimal margins for clean appearance
+ segment_layout.setContentsMargins(4, 4, 4, 4)
+ segment_layout.setSpacing(0) # No spacing between elements
+
+ # Text display - centered with scroll capability (no header label)
+ self.current_segment_text = QLabel("")
+ self.current_segment_text.setAlignment(
+ Qt.AlignmentFlag.AlignHCenter | Qt.AlignmentFlag.AlignTop)
+ self.current_segment_text.setWordWrap(True)
+ self.current_segment_text.setStyleSheet(
+ "color: #666; line-height: 1.2; margin: 0; padding: 4px;")
+ self.current_segment_text.setMinimumHeight(
+ 60) # Ensure minimum height for text
+ # Make it scrollable for long text
+ self.current_segment_scroll_area = QScrollArea()
+ self.current_segment_scroll_area.setWidget(self.current_segment_text)
+ self.current_segment_scroll_area.setWidgetResizable(True)
+ self.current_segment_scroll_area.setFrameStyle(QFrame.Shape.NoFrame)
+ self.current_segment_scroll_area.setHorizontalScrollBarPolicy(
+ Qt.ScrollBarPolicy.ScrollBarAlwaysOff)
+ self.current_segment_scroll_area.setVerticalScrollBarPolicy(
+ Qt.ScrollBarPolicy.ScrollBarAsNeeded)
+ self.current_segment_scroll_area.setStyleSheet(
+ "QScrollBar:vertical { width: 12px; } QScrollBar::handle:vertical { background: #ccc; border-radius: 6px; }")
+ # Ensure the text label can expand to show all content
+ self.current_segment_text.setSizePolicy(
+ QSizePolicy.Policy.Preferred, QSizePolicy.Policy.Preferred)
+ # Add scroll area to layout (simplified single-widget layout)
+ segment_layout.addWidget(self.current_segment_scroll_area)
+
+ # Initially hide the frame until there's content
+ self.current_segment_frame.hide()
layout = QVBoxLayout(self)
toolbar = ToolBar(self)
- view_mode_tool_button = TranscriptionViewModeToolButton(shortcuts, self)
- view_mode_tool_button.view_mode_changed.connect(self.on_view_mode_changed)
+ view_mode_tool_button = TranscriptionViewModeToolButton(
+ shortcuts,
+ self.has_translations,
+ self.translator.translation,
+ )
+ view_mode_tool_button.view_mode_changed.connect(
+ self.on_view_mode_changed)
toolbar.addWidget(view_mode_tool_button)
export_tool_button = QToolButton()
@@ -158,12 +267,19 @@ class TranscriptionViewerWidget(QWidget):
export_tool_button.setToolButtonStyle(
Qt.ToolButtonStyle.ToolButtonTextBesideIcon
)
+ export_tool_button.setMinimumWidth(100)
export_transcription_menu = ExportTranscriptionMenu(
- transcription, transcription_service, self
+ transcription,
+ transcription_service,
+ self.has_translations,
+ self.translator.translation,
+ self
)
export_tool_button.setMenu(export_transcription_menu)
- export_tool_button.setPopupMode(QToolButton.ToolButtonPopupMode.InstantPopup)
+ export_tool_button.setPopupMode(
+ QToolButton.ToolButtonPopupMode.MenuButtonPopup)
+ export_tool_button.clicked.connect(export_tool_button.showMenu)
toolbar.addWidget(export_tool_button)
translate_button = QToolButton()
@@ -187,21 +303,834 @@ class TranscriptionViewerWidget(QWidget):
toolbar.addWidget(resize_button)
+ # Underlying libs do not support intel Macs
+ if not (platform.system() == "Darwin" and platform.machine() == "x86_64"):
+ speaker_identification_button = QToolButton()
+ speaker_identification_button.setText(_("Identify Speakers"))
+ speaker_identification_button.setObjectName("speaker_identification_button")
+ speaker_identification_button.setIcon(SpeakerIdentificationIcon(self))
+ speaker_identification_button.setToolButtonStyle(
+ Qt.ToolButtonStyle.ToolButtonTextBesideIcon
+ )
+ speaker_identification_button.clicked.connect(self.on_speaker_identification_button_clicked)
+
+ toolbar.addWidget(speaker_identification_button)
+
+ # Add Find button
+ self.find_button = QToolButton()
+ self.find_button.setText(_("Find"))
+ # Using visibility icon for search
+ self.find_button.setIcon(VisibilityIcon(self))
+ self.find_button.setToolButtonStyle(
+ Qt.ToolButtonStyle.ToolButtonTextBesideIcon)
+ self.find_button.setToolTip(_("Show/Hide Search Bar (Ctrl+F)"))
+ # Make button checkable to show state
+ self.find_button.setCheckable(True)
+ # Initially unchecked (search hidden)
+ self.find_button.setChecked(False)
+ self.find_button.clicked.connect(self.toggle_search_bar_visibility)
+ toolbar.addWidget(self.find_button)
+
layout.setMenuBar(toolbar)
- layout.addWidget(self.table_widget)
- layout.addWidget(self.text_display_box)
- layout.addWidget(self.audio_player)
- layout.addWidget(self.current_segment_label)
+ # Search bar
+ self.create_search_bar()
+ # Search frame (minimal space)
+ layout.addWidget(self.search_frame, 0) # Stretch factor 0 (minimal)
+
+ # Use splitter for resizable media player
+ self.media_splitter = QSplitter(Qt.Orientation.Vertical)
+ self.media_splitter.setHandleWidth(8) # Make splitter handle easier to grab
+ self.media_splitter.addWidget(self.table_widget)
+ self.media_splitter.addWidget(self.media_player_stack)
+ # Make splitter collapsible but with minimum sizes
+ # Don't allow tabe to collapse completely
+ self.media_splitter.setCollapsible(0, False)
+ # Don't allow media player to collapse completely
+ self.media_splitter.setCollapsible(1, False)
+ # Connect splitter to save sizes when user resizes
+ self.media_splitter.splitterMoved.connect(self.on_splitter_moved)
+ # Loop controls section (minimal space)
+ self.create_loop_controls()
+ # Stretch factor 0 (minimal)
+ layout.addWidget(self.loop_controls_frame, 0)
+
+ # Add splitter to layout (table + media player)
+ layout.addWidget(self.media_splitter, 1) # Stretch factor 1 (majority)
+ # Text display box (minimal space)
+ # Stretch factor 0 (minimal)
+ layout.addWidget(self.text_display_box, 0)
+
+ # Add current segment display (minimal space)
+ # Stretch factor 0 (minimal)
+ layout.addWidget(self.current_segment_frame, 1)
+
+ # Initially hide the current segment frame until a segment is selected
+ self.current_segment_frame.hide()
self.setLayout(layout)
+ # Set up keyboard shortcuts
+ self.setup_shortcuts()
+
+ # Restore UI state from settings
+ self.restore_ui_state()
+
+ # Restore geometry from settings
+ self.load_geometry()
+
self.reset_view()
+ def load_transcription_media(self):
+ if self.is_video and self.video_player:
+ self.media_player_stack.setCurrentWidget(self.video_player)
+ self.current_media_player = self.video_player
+ else:
+ self.media_player_stack.setCurrentWidget(self.audio_player)
+ self.current_media_player = self.audio_player
+
+ # Load splitter sizes after determining media type
+ if hasattr(self, 'media_splitter'):
+ self.load_splitter_sizes()
+
+ def on_transcript_segment_clicked(self, segment):
+ if not self.current_media_player:
+ return
+
+ start_time_ms = int(segment.start_time)
+ self.current_media_player.set_position(start_time_ms)
+ if self.current_media_player.media_player.playbackState() != QMediaPlayer.PlaybackState.PlayingState:
+ self.current_media_player.media_player.play()
+
+ def restore_ui_state(self):
+ """Restore UI state from settings"""
+ # Restore playback controls visibility
+ if self.playback_controls_visible:
+ self.show_loop_controls()
+
+ # Restore find widget visibility
+ if self.find_widget_visible:
+ self.show_search_bar()
+
+ def create_search_bar(self):
+ """Create the search bar widget"""
+ self.search_frame = QFrame()
+ self.search_frame.setFrameStyle(QFrame.Shape.StyledPanel)
+ self.search_frame.setMaximumHeight(60)
+
+ search_layout = QHBoxLayout(self.search_frame)
+ search_layout.setContentsMargins(10, 5, 10, 5)
+
+ # Find label
+ search_label = QLabel(_("Find:"))
+ search_label.setStyleSheet("font-weight: bold;")
+ search_layout.addWidget(search_label)
+
+ # Find input - make it wider for better usability
+ self.search_input = QLineEdit()
+ self.search_input.setPlaceholderText(_("Enter text to find..."))
+ self.search_input.textChanged.connect(self.on_search_text_changed)
+ self.search_input.returnPressed.connect(self.search_next)
+ self.search_input.setMinimumWidth(300) # Increased from 200 to 300
+
+ # Add keyboard shortcuts for search navigation
+ from PyQt6.QtGui import QKeySequence
+ self.search_input.installEventFilter(self)
+
+ search_layout.addWidget(self.search_input)
+
+ # Search buttons - make them consistent height and remove hardcoded font sizes
+ self.search_prev_button = QPushButton("↑")
+ self.search_prev_button.setToolTip(_("Previous match (Shift+Enter)"))
+ self.search_prev_button.clicked.connect(self.search_previous)
+ self.search_prev_button.setEnabled(False)
+ self.search_prev_button.setMaximumWidth(40)
+ self.search_prev_button.setMinimumHeight(
+ 30) # Ensure consistent height
+ search_layout.addWidget(self.search_prev_button)
+
+ self.search_next_button = QPushButton("↓")
+ self.search_next_button.setToolTip(_("Next match (Ctrl+Enter)"))
+ self.search_next_button.clicked.connect(self.search_next)
+ self.search_next_button.setEnabled(False)
+ self.search_next_button.setMaximumWidth(40)
+ self.search_next_button.setMinimumHeight(
+ 30) # Ensure consistent height
+ search_layout.addWidget(self.search_next_button)
+
+ # Clear button - make it bigger to accommodate different language translations
+ self.clear_search_button = QPushButton(_("Clear"))
+ self.clear_search_button.clicked.connect(self.clear_search)
+ self.clear_search_button.setMaximumWidth(80) # Increased from 60 to 80
+ self.clear_search_button.setMinimumHeight(
+ 30) # Ensure consistent height
+ search_layout.addWidget(self.clear_search_button)
+
+ # Results label
+ self.search_results_label = QLabel("")
+ self.search_results_label.setStyleSheet("color: #666;")
+ search_layout.addWidget(self.search_results_label)
+
+ search_layout.addStretch()
+
+ # Initially hide the search bar
+ self.search_frame.hide()
+
+ def create_loop_controls(self):
+ """Create the loop controls widget"""
+ self.loop_controls_frame = QFrame()
+ self.loop_controls_frame.setFrameStyle(QFrame.Shape.StyledPanel)
+ self.loop_controls_frame.setMaximumHeight(50)
+
+ loop_layout = QHBoxLayout(self.loop_controls_frame)
+ loop_layout.setContentsMargins(10, 5, 10, 5)
+ # Add some spacing between elements for better visual separation
+ loop_layout.setSpacing(8)
+ # Loop controls label
+ loop_label = QLabel(_("Playback Controls:"))
+ loop_label.setStyleSheet("font-weight: bold;")
+ loop_layout.addWidget(loop_label)
+
+ # Loop toggle button
+ self.loop_toggle = QCheckBox(_("Loop Segment"))
+ self.loop_toggle.setChecked(self.segment_looping_enabled)
+ self.loop_toggle.setToolTip(
+ _("Enable/disable looping when clicking on transcript segments"))
+ self.loop_toggle.toggled.connect(self.on_loop_toggle_changed)
+ loop_layout.addWidget(self.loop_toggle)
+
+ # Follow audio toggle button
+ self.follow_audio_enabled = self.settings.settings.value(
+ "transcription_viewer/follow_audio_enabled", False, type=bool)
+ self.follow_audio_toggle = QCheckBox(_("Follow Audio"))
+ self.follow_audio_toggle.setChecked(self.follow_audio_enabled)
+ self.follow_audio_toggle.setToolTip(
+ _("Enable/disable following the current audio position in the transcript. When enabled, automatically scrolls to current text."))
+ self.follow_audio_toggle.toggled.connect(
+ self.on_follow_audio_toggle_changed)
+ loop_layout.addWidget(self.follow_audio_toggle)
+
+ # Visual separator
+ separator1 = QFrame()
+ separator1.setFrameShape(QFrame.Shape.VLine)
+ separator1.setFrameShadow(QFrame.Shadow.Sunken)
+ separator1.setMaximumHeight(20)
+ loop_layout.addWidget(separator1)
+
+ # Speed controls
+ speed_label = QLabel("Speed:")
+ speed_label.setStyleSheet("font-weight: bold;")
+ loop_layout.addWidget(speed_label)
+
+ self.speed_combo = QComboBox()
+ self.speed_combo.setEditable(True)
+ self.speed_combo.addItems(
+ ["0.5x", "0.75x", "1x", "1.25x", "1.5x", "2x"])
+ self.speed_combo.setInsertPolicy(QComboBox.InsertPolicy.NoInsert)
+ self.speed_combo.currentTextChanged.connect(self.on_speed_changed)
+ self.speed_combo.setMaximumWidth(80)
+ loop_layout.addWidget(self.speed_combo)
+
+ self.speed_down_btn = QPushButton("-")
+ self.speed_down_btn.setMaximumWidth(40) # Match search button width
+ self.speed_down_btn.setMinimumHeight(30) # Match search button height
+ self.speed_down_btn.clicked.connect(self.decrease_speed)
+ loop_layout.addWidget(self.speed_down_btn)
+
+ self.speed_up_btn = QPushButton("+")
+ self.speed_up_btn.setMaximumWidth(40) # Match speed down button width
+ self.speed_up_btn.setMinimumHeight(30) # Match search button height
+ self.speed_up_btn.clicked.connect(self.increase_speed)
+ loop_layout.addWidget(self.speed_up_btn)
+
+ # Initialize speed control with current value from audio player
+ self.initialize_speed_control()
+
+ # Visual separator
+ separator2 = QFrame()
+ separator2.setFrameShape(QFrame.Shape.VLine)
+ separator2.setFrameShadow(QFrame.Shadow.Sunken)
+ separator2.setMaximumHeight(20)
+ loop_layout.addWidget(separator2)
+
+ # Scroll to current button
+ self.scroll_to_current_button = QPushButton(_("Scroll to Current"))
+ self.scroll_to_current_button.setIcon(ScrollToCurrentIcon(self))
+ self.scroll_to_current_button.setToolTip(
+ _("Scroll to the currently spoken text"))
+ self.scroll_to_current_button.clicked.connect(
+ self.on_scroll_to_current_button_clicked)
+ self.scroll_to_current_button.setMinimumHeight(30)
+ self.scroll_to_current_button.setStyleSheet(
+ "QPushButton { padding: 4px 8px; }") # Better padding
+ loop_layout.addWidget(self.scroll_to_current_button)
+
+ loop_layout.addStretch()
+
+ # Initially hide the loop controls frame
+ self.loop_controls_frame.hide()
+
+ def show_loop_controls(self):
+ """Show the loop controls when audio is playing"""
+ self.loop_controls_frame.show()
+
+ # Save the visibility state to settings
+ self.playback_controls_visible = True
+ self.settings.settings.setValue(
+ "transcription_viewer/playback_controls_visible", self.playback_controls_visible)
+
+ def hide_loop_controls(self):
+ """Hide the loop controls when audio is not playing"""
+ self.loop_controls_frame.hide()
+
+ # Save the visibility state to settings
+ self.playback_controls_visible = False
+ self.settings.settings.setValue(
+ "transcription_viewer/playback_controls_visible", self.playback_controls_visible)
+
+ def toggle_playback_controls_visibility(self):
+ """Toggle the visibility of playback controls manually"""
+ if self.loop_controls_frame.isVisible():
+ self.hide_loop_controls()
+ else:
+ self.show_loop_controls()
+
+ def toggle_audio_playback(self):
+ """Toggle audio playback (play/pause)"""
+ if self.current_media_player and self.current_media_player.media_player.playbackState() == QMediaPlayer.PlaybackState.PlayingState:
+ self.current_media_player.media_player.pause()
+ else:
+ self.current_media_player.media_player.play()
+
+ def replay_current_segment(self):
+ """Rewind current segment to its start and play if not already playing"""
+ if self.currently_selected_segment is None:
+ return
+
+ # Get the start time of the currently selected segment
+ start_time = self.currently_selected_segment.value("start_time")
+
+ # Set position to the start of the segment
+ if self.current_media_player:
+ self.current_media_player.set_position(start_time)
+
+ # If audio is not playing, start playing
+ if self.audio_player.media_player.playbackState() != QMediaPlayer.PlaybackState.PlayingState:
+ self.audio_player.media_player.play()
+
+ def decrease_segment_start(self):
+ """Decrease the start time of the current segment by 0.5 seconds"""
+ self._adjust_segment_timestamp("start_time", -500)
+
+ def increase_segment_start(self):
+ """Increase the start time of the current segment by 0.5 seconds"""
+ self._adjust_segment_timestamp("start_time", 500)
+
+ def decrease_segment_end(self):
+ """Decrease the end time of the current segment by 0.5 seconds"""
+ self._adjust_segment_timestamp("end_time", -500)
+
+ def increase_segment_end(self):
+ """Increase the end time of the current segment by 0.5 seconds"""
+ self._adjust_segment_timestamp("end_time", 500)
+
+ def _adjust_segment_timestamp(self, field: str, delta_ms: int):
+ """Helper method to adjust a segment's timestamp"""
+ if self.currently_selected_segment is None:
+ return
+
+ # Get current segment row and ID
+ segment_id = self.currently_selected_segment.value("id")
+ segments = self.table_widget.segments()
+ current_row = -1
+ for i, segment in enumerate(segments):
+ if segment.value("id") == segment_id:
+ current_row = i
+ break
+
+ if current_row == -1:
+ return
+
+ # Get FRESH current values from the model (not from cached segment)
+ from buzz.widgets.transcription_viewer.transcription_segments_editor_widget import Column
+ start_col = Column.START.value
+ end_col = Column.END.value
+
+ current_start_time = self.table_widget.model().record(
+ current_row).value("start_time")
+ current_end_time = self.table_widget.model().record(current_row).value("end_time")
+
+ # Calculate new value based on CURRENT database value
+ if field == "start_time":
+ current_value = current_start_time
+ other_value = current_end_time
+ else:
+ current_value = current_end_time
+ other_value = current_start_time
+
+ new_value = current_value + delta_ms
+
+ if field == "start_time":
+ # Ensure start time doesn't go below 0
+ new_value = max(0, new_value)
+ # Ensure start time is less than end time
+ if new_value >= current_end_time:
+ return
+
+ # Check overlap with previous segment
+ if current_row > 0:
+ prev_end = self.table_widget.model().record(current_row - 1).value("end_time")
+ if new_value < prev_end:
+ # Update previous segment's end time
+ self.table_widget.model().setData(
+ self.table_widget.model().index(current_row - 1, end_col),
+ new_value
+ )
+ else: # end_time
+ # Ensure end time is greater than start time
+ if new_value <= current_start_time:
+ return
+
+ # Check overlap with next segment
+ if current_row < len(segments) - 1:
+ next_start = self.table_widget.model().record(
+ current_row + 1).value("start_time")
+ if new_value > next_start:
+ # Update next segment's start time
+ self.table_widget.model().setData(
+ self.table_widget.model().index(current_row + 1, start_col),
+ new_value
+ )
+
+ # Update the timestamp
+ column = start_col if field == "start_time" else end_col
+ self.table_widget.model().setData(
+ self.table_widget.model().index(current_row, column),
+ new_value
+ )
+
+ # Refresh the currently_selected_segment reference with fresh data from model
+ self.currently_selected_segment = self.table_widget.model().record(current_row)
+
+ # Update loop range if looping is enabled
+ if self.segment_looping_enabled:
+ updated_start = self.currently_selected_segment.value("start_time")
+ updated_end = self.currently_selected_segment.value("end_time")
+
+ if self.current_media_player:
+ self.current_media_player.set_range(
+ (updated_start, updated_end))
+
+ def on_audio_playback_state_changed(self, state):
+ """Handle audio playback state changes to automatically show playback controls"""
+ from PyQt6.QtMultimedia import QMediaPlayer
+
+ if state == QMediaPlayer.PlaybackState.PlayingState:
+ # Show playback controls when audio starts playing
+ if self.view_mode == ViewMode.TIMESTAMPS:
+ self.show_loop_controls()
+
+ def initialize_speed_control(self):
+ """Initialize the speed control with current value from audio player"""
+ try:
+ # Get current speed from audio player
+ if self.current_media_player:
+ current_speed = self.current_media_player.media_player.playbackRate()
+ # Ensure it's within valid range
+ current_speed = max(0.1, min(5.0, current_speed))
+ # Set the combo box text
+ speed_text = f"{current_speed:.2f}x"
+ self.speed_combo.setCurrentText(speed_text)
+ except Exception as e:
+ logging.warning(f"Could not initialize speed control: {e}")
+ # Default to 1.0x
+ self.speed_combo.setCurrentText("1.0x")
+
+ def on_speed_changed(self, speed_text: str):
+ """Handle speed change from the combo box"""
+ try:
+ # Extract the numeric value from speed text (e.g., "1.5x" -> 1.5)
+ clean_text = speed_text.replace('x', '').strip()
+ speed_value = float(clean_text)
+
+ # Clamp the speed value to valid range
+ speed_value = max(0.1, min(5.0, speed_value))
+
+ # Update the combo box text to show the clamped value
+ if not speed_text.endswith('x'):
+ speed_text = f"{speed_value:.2f}x"
+
+ # Block signals to prevent recursion
+ self.speed_combo.blockSignals(True)
+ self.speed_combo.setCurrentText(speed_text)
+ self.speed_combo.blockSignals(False)
+
+ # Set the playback rate on the audio player
+ if self.current_media_player:
+ self.current_media_player.media_player.setPlaybackRate(
+ speed_value)
+ # Save the new rate to settings
+ self.settings.set_value(
+ self.settings.Key.AUDIO_PLAYBACK_RATE, speed_value)
+ except ValueError:
+ logging.warning(f"Invalid speed value: {speed_text}")
+ # Reset to current valid value
+ current_text = self.speed_combo.currentText()
+ if current_text != speed_text:
+ self.speed_combo.setCurrentText(current_text)
+
+ def increase_speed(self):
+ """Increase speed by 0.05"""
+ current_speed = self.get_current_speed()
+ new_speed = min(5.0, current_speed + 0.05)
+ self.set_speed(new_speed)
+
+ def decrease_speed(self):
+ """Decrease speed by 0.05"""
+ current_speed = self.get_current_speed()
+ new_speed = max(0.1, current_speed - 0.05)
+ self.set_speed(new_speed)
+
+ def get_current_speed(self) -> float:
+ """Get the current playback speed as a float"""
+ try:
+ speed_text = self.speed_combo.currentText()
+ return float(speed_text.replace('x', ''))
+ except ValueError:
+ return 1.0
+
+ def set_speed(self, speed: float):
+ """Set the playback speed programmatically"""
+ # Clamp the speed value to valid range
+ speed = max(0.1, min(5.0, speed))
+
+ # Update the combo box
+ speed_text = f"{speed:.2f}x"
+ self.speed_combo.setCurrentText(speed_text)
+
+ # Set the playback rate on the audio player
+ self.audio_player.media_player.setPlaybackRate(speed)
+
+ # Save the new rate to settings
+ self.settings.set_value(self.settings.Key.AUDIO_PLAYBACK_RATE, speed)
+
+ def on_search_text_changed(self, text: str):
+ """Handle search text changes"""
+ self.search_text = text.strip()
+ if self.search_text:
+ # Debounce search to avoid UI jumping while typing
+ if len(self.search_text) >= 2:
+ self.search_debounce_timer.start(300) # 300ms delay
+ self.search_frame.show()
+ else:
+ self.search_debounce_timer.stop()
+ self.clear_search()
+ # Don't hide the search frame immediately, let user clear it manually
+
+ def perform_search(self):
+ """Perform the actual search based on current view mode"""
+ self.search_results = []
+ self.current_search_index = 0
+
+ if self.view_mode == ViewMode.TIMESTAMPS:
+ self.search_in_table()
+ else: # TEXT or TRANSLATION mode
+ self.search_in_text()
+
+ self.update_search_ui()
+
+ def search_in_table(self):
+ """Search in the table view (segments)"""
+ segments = self.table_widget.segments()
+ search_text_lower = self.search_text.lower()
+
+ # Limit search results to avoid performance issues with very long segments
+ max_results = 100
+
+ for i, segment in enumerate(segments):
+ if len(self.search_results) >= max_results:
+ break
+
+ text = segment.value("text").lower()
+ if search_text_lower in text:
+ self.search_results.append(("table", i, segment))
+
+ # Also search in translations if available
+ if self.has_translations:
+ for i, segment in enumerate(segments):
+ if len(self.search_results) >= max_results:
+ break
+
+ translation = segment.value("translation").lower()
+ if search_text_lower in translation:
+ self.search_results.append(("table", i, segment))
+
+ def search_in_text(self):
+ """Search in the text display box"""
+ text = self.text_display_box.toPlainText()
+ search_text_lower = self.search_text.lower()
+ text_lower = text.lower()
+
+ # Limit search results to avoid performance issues with very long text
+ max_results = 100
+
+ start = 0
+ result_count = 0
+ while True:
+ pos = text_lower.find(search_text_lower, start)
+ if pos == -1 or result_count >= max_results:
+ break
+ self.search_results.append(
+ ("text", pos, pos + len(self.search_text)))
+ start = pos + 1
+ result_count += 1
+
+ def update_search_ui(self):
+ """Update the search UI elements"""
+ if self.search_results:
+ # Show "1 of X matches" format for consistency with navigation
+ if len(self.search_results) >= 100:
+ self.search_results_label.setText(_("1 of 100+ matches"))
+ else:
+ self.search_results_label.setText(
+ _("1 of ") + str(len(self.search_results)) + _(" matches"))
+ self.search_prev_button.setEnabled(True)
+ self.search_next_button.setEnabled(True)
+ self.highlight_current_match()
+ else:
+ self.search_results_label.setText(_("No matches found"))
+ self.search_prev_button.setEnabled(False)
+ self.search_next_button.setEnabled(False)
+
+ def highlight_current_match(self):
+ """Highlight the current search match"""
+ if not self.search_results:
+ return
+
+ match_type, match_data, _ = self.search_results[self.current_search_index]
+
+ if match_type == "table":
+ # Highlight in table
+ self.highlight_table_match(match_data)
+ else: # text
+ # Highlight in text display
+ self.highlight_text_match(match_data)
+
+ def highlight_table_match(self, row_index: int):
+ """Highlight a match in the table view"""
+ # Select the row containing the match
+ self.table_widget.selectRow(row_index)
+ # Scroll to the row
+ self.table_widget.scrollTo(
+ self.table_widget.model().index(row_index, 0))
+
+ def highlight_text_match(self, start_pos: int):
+ """Highlight a match in the text display"""
+ cursor = QTextCursor(self.text_display_box.document())
+ cursor.setPosition(start_pos)
+ cursor.setPosition(start_pos + len(self.search_text),
+ QTextCursor.MoveMode.KeepAnchor)
+ # Set the cursor to highlight the text
+ self.text_display_box.setTextCursor(cursor)
+
+ # Ensure the highlighted text is visible
+ self.text_display_box.ensureCursorVisible()
+
+ def search_next(self):
+ """Go to next search result"""
+ if not self.search_results:
+ return
+
+ self.current_search_index = (
+ self.current_search_index + 1) % len(self.search_results)
+ self.highlight_current_match()
+ self.update_search_results_label()
+
+ def search_previous(self):
+ """Go to previous search result"""
+ if not self.search_results:
+ return
+
+ self.current_search_index = (
+ self.current_search_index - 1) % len(self.search_results)
+ self.highlight_current_match()
+ self.update_search_results_label()
+
+ def search_next_if_results(self):
+ """Go to next search result only if there are results (for global shortcut)"""
+ if self.search_results:
+ self.search_next()
+
+ def search_previous_if_results(self):
+ """Go to previous search result only if there are results (for global shortcut)"""
+ if self.search_results:
+ self.search_previous()
+
+ def update_search_results_label(self):
+ """Update the search results label with current position"""
+ if self.search_results:
+ if len(self.search_results) >= 100:
+ self.search_results_label.setText(
+ str(self.current_search_index + 1) + _(" of 100+ matches"))
+ else:
+ self.search_results_label.setText(str(
+ self.current_search_index + 1) + _(" of ") + str(len(self.search_results)) + _(" matches"))
+
+ def clear_search(self):
+ """Clear the search and reset highlighting"""
+ self.search_text = ""
+ self.search_results = []
+ self.current_search_index = 0
+ self.search_input.clear()
+ self.search_results_label.setText("")
+
+ self.search_prev_button.setEnabled(False)
+ self.search_next_button.setEnabled(False)
+
+ # Clear text highlighting
+ if self.view_mode in (ViewMode.TEXT, ViewMode.TRANSLATION):
+ cursor = QTextCursor(self.text_display_box.document())
+ cursor.clearSelection()
+ self.text_display_box.setTextCursor(cursor)
+
+ # Keep search bar visible but clear the input
+ self.search_input.setFocus()
+
+ def hide_search_bar(self):
+ """Hide the search bar completely"""
+ self.search_frame.hide()
+ self.find_button.setChecked(False) # Sync button state
+ self.clear_search()
+ self.search_input.clearFocus()
+
+ # Save the visibility state to settings
+ self.find_widget_visible = False
+ self.settings.settings.setValue(
+ "transcription_viewer/find_widget_visible", False)
+
+ def setup_shortcuts(self):
+ """Set up keyboard shortcuts"""
+ from PyQt6.QtGui import QShortcut, QKeySequence
+
+ # Search shortcut (Ctrl+F)
+ search_shortcut = QShortcut(QKeySequence(
+ self.shortcuts.get(Shortcut.SEARCH_TRANSCRIPT)), self)
+ search_shortcut.activated.connect(self.focus_search_input)
+
+ # Search navigation shortcuts (Ctrl+Enter / Shift+Enter)
+ search_next_shortcut = QShortcut(QKeySequence(
+ self.shortcuts.get(Shortcut.SEARCH_NEXT)), self)
+ search_next_shortcut.activated.connect(self.search_next_if_results)
+
+ search_prev_shortcut = QShortcut(QKeySequence(
+ self.shortcuts.get(Shortcut.SEARCH_PREVIOUS)), self)
+ search_prev_shortcut.activated.connect(self.search_previous_if_results)
+
+ # Scroll to current text shortcut (Ctrl+G)
+ scroll_to_current_shortcut = QShortcut(QKeySequence(
+ self.shortcuts.get(Shortcut.SCROLL_TO_CURRENT_TEXT)), self)
+ scroll_to_current_shortcut.activated.connect(
+ self.on_scroll_to_current_button_clicked)
+
+ # Play/Pause audio shortcut (Ctrl+P)
+ play_pause_shortcut = QShortcut(QKeySequence(
+ self.shortcuts.get(Shortcut.PLAY_PAUSE_AUDIO)), self)
+ play_pause_shortcut.activated.connect(self.toggle_audio_playback)
+
+ # Replay current segment shortcut (Ctrl+Shift+P)
+ replay_segment_shortcut = QShortcut(QKeySequence(
+ self.shortcuts.get(Shortcut.REPLAY_CURRENT_SEGMENT)), self)
+ replay_segment_shortcut.activated.connect(self.replay_current_segment)
+
+ # Playback controls visibility shortcut (Ctrl+Alt+P)
+ playback_controls_shortcut = QShortcut(QKeySequence(
+ self.shortcuts.get(Shortcut.TOGGLE_PLAYBACK_CONTROLS)), self)
+ playback_controls_shortcut.activated.connect(
+ self.toggle_playback_controls_visibility)
+
+ # Segment timestamp adjustment shortcuts
+ decrease_start_shortcut = QShortcut(QKeySequence(
+ self.shortcuts.get(Shortcut.DECREASE_SEGMENT_START)), self)
+ decrease_start_shortcut.activated.connect(self.decrease_segment_start)
+
+ increase_start_shortcut = QShortcut(QKeySequence(
+ self.shortcuts.get(Shortcut.INCREASE_SEGMENT_START)), self)
+ increase_start_shortcut.activated.connect(self.increase_segment_start)
+
+ decrease_end_shortcut = QShortcut(QKeySequence(
+ self.shortcuts.get(Shortcut.DECREASE_SEGMENT_END)), self)
+ decrease_end_shortcut.activated.connect(self.decrease_segment_end)
+
+ increase_end_shortcut = QShortcut(QKeySequence(
+ self.shortcuts.get(Shortcut.INCREASE_SEGMENT_END)), self)
+ increase_end_shortcut.activated.connect(self.increase_segment_end)
+
+ def focus_search_input(self):
+ """Toggle the search bar visibility and focus the input field"""
+ if self.search_frame.isVisible():
+ self.hide_search_bar()
+ else:
+ self.search_frame.show()
+ self.find_button.setChecked(True) # Sync button state
+ self.search_input.setFocus()
+ self.search_input.selectAll()
+
+ # Save the visibility state to settings
+ self.find_widget_visible = True
+ self.settings.settings.setValue(
+ "transcription_viewer/find_widget_visible", True)
+
+ def toggle_search_bar_visibility(self):
+ """Toggle the search bar visibility"""
+ if self.search_frame.isVisible():
+ self.hide_search_bar()
+ else:
+ self.show_search_bar()
+
+ # Save the visibility state to settings
+ self.find_widget_visible = self.search_frame.isVisible()
+ self.settings.settings.setValue(
+ "transcription_viewer/find_widget_visible", self.find_widget_visible)
+
+ def show_search_bar(self):
+ """Show the search bar and focus the input"""
+ self.search_frame.show()
+ self.find_button.setChecked(True)
+ self.search_input.setFocus()
+ self.search_input.selectAll()
+
+ # Save the visibility state to settings
+ self.find_widget_visible = True
+ self.settings.settings.setValue(
+ "transcription_viewer/find_widget_visible", True)
+
+ def eventFilter(self, obj, event):
+ """Event filter to handle keyboard shortcuts in search input"""
+ from PyQt6.QtCore import QEvent, Qt
+
+ if obj == self.search_input and event.type() == QEvent.Type.KeyPress:
+ # The event is already a QKeyEvent, no need to create a new one
+ if event.key() == Qt.Key.Key_Return and event.modifiers() == Qt.KeyboardModifier.ShiftModifier:
+ self.search_previous()
+ return True
+ elif event.key() == Qt.Key.Key_Escape:
+ self.hide_search_bar()
+ return True
+ return super().eventFilter(obj, event)
+
def reset_view(self):
+ if hasattr(self, 'media_splitter'):
+ self.load_splitter_sizes()
+
if self.view_mode == ViewMode.TIMESTAMPS:
self.text_display_box.hide()
self.table_widget.show()
+ self.media_splitter.show()
+ if self.current_media_player:
+ self.current_media_player.show()
+ # Show playback controls in timestamps mode
+ if self.playback_controls_visible:
+ self.loop_controls_frame.show()
elif self.view_mode == ViewMode.TEXT:
segments = self.transcription_service.get_transcription_segments(
transcription_id=self.transcription.id_as_uuid
@@ -210,8 +1139,11 @@ class TranscriptionViewerWidget(QWidget):
combined_text = ""
previous_end_time = None
+ paragraph_split_time = int(
+ os.getenv("BUZZ_PARAGRAPH_SPLIT_TIME", "2000"))
+
for segment in segments:
- if previous_end_time is not None and (segment.start_time - previous_end_time) >= 2000:
+ if previous_end_time is not None and (segment.start_time - previous_end_time) >= paragraph_split_time:
combined_text += "\n\n"
combined_text += segment.text.strip() + " "
previous_end_time = segment.end_time
@@ -219,8 +1151,14 @@ class TranscriptionViewerWidget(QWidget):
self.text_display_box.setPlainText(combined_text.strip())
self.text_display_box.show()
self.table_widget.hide()
- else: # ViewMode.TRANSLATION
- # TODO add check for if translation exists
+ self.media_splitter.hide()
+ if self.current_media_player:
+ self.current_media_player.hide()
+ # Hide playback controls in text mode
+ self.loop_controls_frame.hide()
+ # Hide current segment display in text mode
+ self.current_segment_frame.hide()
+ else: # ViewMode.TRANSLATION
segments = self.transcription_service.get_transcription_segments(
transcription_id=self.transcription.id_as_uuid
)
@@ -229,19 +1167,93 @@ class TranscriptionViewerWidget(QWidget):
)
self.text_display_box.show()
self.table_widget.hide()
+ self.media_splitter.hide()
+ if self.current_media_player:
+ self.current_media_player.hide()
+ # Hide playback controls in translation mode
+ self.loop_controls_frame.hide()
+ # Hide current segment display in translation mode
+ self.current_segment_frame.hide()
+
+ # Refresh search if there's active search text
+ if self.search_text:
+ self.perform_search()
def on_view_mode_changed(self, view_mode: ViewMode) -> None:
self.view_mode = view_mode
self.reset_view()
+ # Refresh search if there's active search text
+ if self.search_text:
+ self.perform_search()
+
def on_segment_selected(self, segment: QSqlRecord):
- if (
- self.audio_player.media_player.playbackState()
- == QMediaPlayer.PlaybackState.PlayingState
- ):
- self.audio_player.set_range(
- (segment.value("start_time"), segment.value("end_time"))
- )
+ # Store the currently selected segment for loop functionality
+ self.currently_selected_segment = segment
+
+ # Show the current segment frame and update the text
+ self.current_segment_frame.show()
+ self.current_segment_text.setText(segment.value("text"))
+
+ # Force the text label to recalculate its size
+ self.current_segment_text.adjustSize()
+
+ # Resize the frame to fit the text content
+ self.resize_current_segment_frame()
+
+ # Ensure the scroll area updates properly and shows scrollbars when needed
+ self.current_segment_scroll_area.updateGeometry()
+ self.current_segment_scroll_area.verticalScrollBar(
+ ).setVisible(True) # Ensure scrollbar is visible
+
+ start_time_ms = segment.value("start_time")
+ end_time_ms = segment.value("end_time")
+
+ if not self.current_media_player:
+ return
+
+ if self.current_media_player.position_ms < start_time_ms or self.current_media_player.position_ms > end_time_ms:
+ self.current_media_player.set_position(start_time_ms)
+
+ if self.segment_looping_enabled:
+ self.current_media_player.set_range((start_time_ms, end_time_ms))
+
+ # Reset looping flag to ensure new loops work
+ self.current_media_player.is_looping = False
+ else:
+ segments = self.table_widget.segments()
+ for i, seg in enumerate(segments):
+ if seg.value("id") == segment.value("id"):
+ self.table_widget.highlight_and_scroll_to_row(i)
+ break
+
+ def on_timestamp_being_edited(self, row: int, column: int, new_value_ms: int):
+ """Handle real-time timestamp editing to update loop range immediately"""
+ # Only update if looping is enabled and we're editing the currently selected segment
+ if not self.segment_looping_enabled or self.currently_selected_segment is None:
+ return
+
+ # Check if we're editing the currently selected segment
+ segments = self.table_widget.segments()
+ if row >= len(segments):
+ return
+
+ edited_segment = segments[row]
+ if edited_segment.value("id") != self.currently_selected_segment.value("id"):
+ return
+
+ # Import Column enum to check which column is being edited
+ from buzz.widgets.transcription_viewer.transcription_segments_editor_widget import Column
+
+ # Update the loop range based on which timestamp is being edited
+ if column == Column.START.value:
+ # Editing start time - update loop start
+ end_time = edited_segment.value("end_time")
+ self.audio_player.set_range((new_value_ms, end_time))
+ elif column == Column.END.value:
+ # Editing end time - update loop end
+ start_time = edited_segment.value("start_time")
+ self.audio_player.set_range((start_time, new_value_ms))
def on_audio_player_position_ms_changed(self, position_ms: int) -> None:
segments = self.table_widget.segments()
@@ -256,11 +1268,92 @@ class TranscriptionViewerWidget(QWidget):
None,
)
if current_segment is not None:
- self.current_segment_label.setText(current_segment.value("text"))
+ self.current_segment_text.setText(current_segment.value("text"))
+ self.current_segment_frame.show() # Show the frame when there's a current segment
+
+ # Force the text label to recalculate its size
+ self.current_segment_text.adjustSize()
+
+ # Resize the frame to fit the text content
+ self.resize_current_segment_frame()
+
+ # Ensure the scroll area updates properly and shows scrollbars when needed
+ self.current_segment_scroll_area.updateGeometry()
+ self.current_segment_scroll_area.verticalScrollBar(
+ ).setVisible(True) # Ensure scrollbar is visible
+ # Update highlighting based on follow audio and loop settings
+ if self.follow_audio_enabled:
+ # Follow audio mode: highlight the current segment based on audio position
+ if not self.segment_looping_enabled or self.currently_selected_segment is None:
+ # Normal mode: highlight the current segment
+ for i, segment in enumerate(segments):
+ if segment.value("id") == current_segment.value("id"):
+ self.table_widget.highlight_and_scroll_to_row(i)
+ break
+ else:
+ # Loop mode: only highlight if we're in a different segment than the selected one
+ if current_segment.value("id") != self.currently_selected_segment.value("id"):
+ for i, segment in enumerate(segments):
+ if segment.value("id") == current_segment.value("id"):
+ self.table_widget.highlight_and_scroll_to_row(
+ i)
+ break
+ else:
+ # Don't follow audio: keep highlighting on the selected segment
+ if self.currently_selected_segment is not None:
+ # Find and highlight the selected segment
+ for i, segment in enumerate(segments):
+ if segment.value("id") == self.currently_selected_segment.value("id"):
+ self.table_widget.highlight_and_scroll_to_row(i)
+ break
+ # Don't do any highlighting if no segment is selected and follow is disabled
+
+ def resize_current_segment_frame(self):
+ """
+ Resize the current segment frame to fit its content, using the actual rendered size
+ of the text label (including line wrapping). This ensures the frame is tall enough
+ for the visible text, up to a reasonable maximum.
+ """
+ text = self.current_segment_text.text()
+ if not text:
+ self.current_segment_frame.setMaximumHeight(0)
+ self.current_segment_frame.setMinimumHeight(0)
+ return
+
+ # Calculate the height needed for the text area
+ line_height = self.current_segment_text.fontMetrics().lineSpacing()
+ max_visible_lines = 3 # Fixed at 3 lines for consistency and clean UI
+
+ # Calculate the height needed for the maximum visible lines (25% larger)
+ text_height = line_height * max_visible_lines * 1.25
+
+ # Add some vertical margins/padding
+ margins = 8 # Increased from 2 to 8 for better spacing
+
+ # Calculate total height needed (no header height anymore)
+ total_height = text_height + margins
+
+ # Convert to integer since Qt methods expect int values
+ total_height = int(total_height)
+
+ # Set maximum height to ensure consistent sizing, but allow minimum to be flexible
+ self.current_segment_frame.setMaximumHeight(total_height)
+ self.current_segment_frame.setMinimumHeight(total_height)
+
+ # Convert text_height to integer since Qt methods expect int values
+ text_height = int(text_height)
+
+ # Allow the scroll area to be flexible in height for proper scrolling
+ self.current_segment_scroll_area.setMinimumHeight(text_height)
+ self.current_segment_scroll_area.setMaximumHeight(text_height)
+
+ # Allow the text label to size naturally for proper scrolling
+ self.current_segment_text.setMinimumHeight(text_height)
def load_preferences(self):
self.settings.settings.beginGroup("file_transcriber")
- preferences = FileTranscriptionPreferences.load(settings=self.settings.settings)
+ preferences = FileTranscriptionPreferences.load(
+ settings=self.settings.settings)
self.settings.settings.endGroup()
return preferences
@@ -283,75 +1376,268 @@ class TranscriptionViewerWidget(QWidget):
return
if self.transcription_options.llm_model == "" or self.transcription_options.llm_prompt == "":
+ self.transcription_options_dialog.accepted.connect(
+ self.run_translation)
self.transcription_options_dialog.show()
return
+ self.run_translation()
+
+ def run_translation(self):
+ if self.transcription_options.llm_model == "" or self.transcription_options.llm_prompt == "":
+ return
+
segments = self.table_widget.segments()
for segment in segments:
self.translator.enqueue(segment.value("text"), segment.value("id"))
def on_resize_button_clicked(self):
- target_chars_dialog = OkEnabledInputDialog(self)
- target_chars_dialog.setOkButtonText(_("Ok"))
- target_chars_dialog.setCancelButtonText(_("Cancel"))
- target_chars_dialog.setWindowTitle(_("Desired subtitle length"))
- target_chars_dialog.setLabelText(_("Enter target characters per subtitle:"))
- target_chars_dialog.setIntValue(42)
- target_chars_dialog.setIntMaximum(100)
- target_chars_dialog.setIntMinimum(1)
- target_chars_dialog.setIntStep(1)
- target_chars_dialog.setInputMode(QInputDialog.InputMode.IntInput)
-
- if target_chars_dialog.exec() == QInputDialog.DialogCode.Accepted:
- target_chars = target_chars_dialog.intValue()
- else:
- return
-
- segments = self.table_widget.segments()
- subs = []
- for segment in segments:
- subtitle = srt.Subtitle(
- index=segment.value("id"),
- start=segment.value("start_time"),
- end=segment.value("end_time"),
- content=segment.value("text")
- )
- subs.append(subtitle)
-
- resized_subs = []
- last_index = 0
-
- # Limit each subtitle to a maximum character length, splitting into
- # multiple subtitle items if necessary.
- for sub in subs:
- new_subs = srt_equalizer.split_subtitle(
- sub=sub, target_chars=target_chars, start_from_index=last_index, method="punctuation")
- last_index = new_subs[-1].index
- resized_subs.extend(new_subs)
-
- segments = [
- Segment(
- round(sub.start),
- round(sub.end),
- sub.content
- )
- for sub in resized_subs
- if round(sub.start) != round(sub.end)
- ]
-
- self.transcription_service.replace_transcription_segments(
- UUID(hex=self.transcription.id),
- segments
+ self.transcription_resizer_dialog = TranscriptionResizerWidget(
+ transcription=self.transcription,
+ transcription_service=self.transcription_service,
+ transcriptions_updated_signal=self.transcriptions_updated_signal,
)
- self.table_widget.model().select()
- self.table_widget.init_row_height()
+ self.transcriptions_updated_signal.connect(self.close)
+
+ self.transcription_resizer_dialog.show()
+
+ def on_speaker_identification_button_clicked(self):
+ # Underlying libs do not support intel Macs
+ if not (platform.system() == "Darwin" and platform.machine() == "x86_64"):
+ self.speaker_identification_dialog = SpeakerIdentificationWidget(
+ transcription=self.transcription,
+ transcription_service=self.transcription_service,
+ transcriptions_updated_signal=self.transcriptions_updated_signal,
+ )
+
+ self.transcriptions_updated_signal.connect(self.close)
+
+ self.speaker_identification_dialog.show()
+
+ pass
+
+ def on_loop_toggle_changed(self, enabled: bool):
+ """Handle loop toggle state change"""
+ self.segment_looping_enabled = enabled
+ # Save preference to settings
+ self.settings.settings.setValue(
+ "transcription_viewer/segment_looping_enabled", enabled)
+ if enabled:
+ # If looping is re-enabled,and we have a selected segment, return to it
+ if self.currently_selected_segment is not None:
+ # Find the row index of the selected segment
+ segments = self.table_widget.segments()
+ for i, segment in enumerate(segments):
+ if segment.value("id") == self.currently_selected_segment.value("id"):
+ # Highlight and scroll to the selected segment
+ self.table_widget.highlight_and_scroll_to_row(i)
+
+ start_time_ms = self.currently_selected_segment.value(
+ "start_time")
+ end_time_ms = self.currently_selected_segment.value(
+ "end_time")
+ # Set the loop range for the selected segment
+ if self.current_media_player:
+ self.current_media_player.set_range(
+ (start_time_ms, end_time_ms))
+
+ # If audio is currently playing and outside the range, jump to the start
+ current_pos = self.current_media_player.position_ms
+ playback_state = self.current_media_player.media_player.playbackState()
+ if (playback_state == QMediaPlayer.PlaybackState.PlayingState and
+ (current_pos < start_time_ms or current_pos > end_time_ms)):
+ self.current_media_player.set_position(
+ start_time_ms)
+
+ break
+ else:
+ # Clear any existing range if looping is disabled
+ if self.current_media_player:
+ self.current_media_player.clear_range()
+
+ def on_follow_audio_toggle_changed(self, enabled: bool):
+ """Handle follow audio toggle state change"""
+ self.follow_audio_enabled = enabled
+ # Save preference to settings
+ self.settings.settings.setValue(
+ "transcription_viewer/follow_audio_enabled", enabled)
+ if enabled:
+ # When follow audio is first enabled, automatically scroll to current position
+ # This gives immediate feedback that the feature is working
+ self.auto_scroll_to_current_position()
+ else:
+ # If we have a selected segment, highlight it and keep it highlighted
+ if self.currently_selected_segment is not None:
+ segments = self.table_widget.segments()
+ for i, segment in enumerate(segments):
+ if segment.value("id") == self.currently_selected_segment.value("id"):
+ self.table_widget.highlight_and_scroll_to_row(i)
+ break
+
+ def on_scroll_to_current_button_clicked(self):
+ """Handle scroll to current button click"""
+ if not self.current_media_player:
+ return
+ current_pos = self.current_media_player.position_ms
+ segments = self.table_widget.segments()
+
+ # Find the current segment based on audio position
+ current_segment_index = 0
+ current_segment = segments[0]
+ for i, segment in enumerate(segments):
+ if segment.value("start_time") <= current_pos < segment.value("end_time"):
+ current_segment_index = i
+ current_segment = segment
+ break
+
+ # Workaround for scrolling to already selected segment
+ if self.currently_selected_segment and self.currently_selected_segment.value("id") == current_segment.value('id'):
+ self.highlight_table_match(0)
+
+ if self.currently_selected_segment is None:
+ self.highlight_table_match(0)
+
+ if current_segment_index == 0 and len(segments) > 1:
+ self.highlight_table_match(1)
+
+ self.highlight_table_match(current_segment_index)
+ self.current_media_player.set_position(current_pos)
+
+ def auto_scroll_to_current_position(self):
+ """
+ Automatically scroll to the current audio position.
+ This is used when follow audio is first enabled to give immediate feedback.
+ """
+ try:
+ # Only scroll if we're in timestamps view mode (table is visible)
+ if self.view_mode != ViewMode.TIMESTAMPS:
+ return
+
+ if not self.current_media_player:
+ return
+ current_pos = self.current_media_player.position_ms
+ segments = self.table_widget.segments()
+
+ # Find the current segment based on audio position
+ current_segment = next(
+ (segment for segment in segments
+ if segment.value("start_time") <= current_pos < segment.value("end_time")),
+ None
+ )
+
+ if current_segment is not None:
+ # Find the row index and scroll to it
+ for i, segment in enumerate(segments):
+ if segment.value("id") == current_segment.value("id"):
+ # Use all available scrolling methods to ensure visibility
+ # Method 1: Use the table widget's built-in scrolling method
+ self.table_widget.highlight_and_scroll_to_row(i)
+ break
+
+ except Exception as e:
+ pass # Silently handle any errors
+
+ def resizeEvent(self, event):
+ """Save geometry when widget is resized"""
+ self.save_geometry()
+ self.save_splitter_sizes()
+ super().resizeEvent(event)
def closeEvent(self, event):
+ """Save geometry when widget is closed"""
+ self.save_geometry()
+
+ # save splitter sizes before closing
+ self.save_splitter_sizes()
+
self.hide()
+ # Stop media playback when closing
+ if self.current_media_player:
+ self.current_media_player.stop()
+
+ if self.transcription_resizer_dialog:
+ self.transcription_resizer_dialog.close()
+
+ if self.speaker_identification_dialog:
+ self.speaker_identification_dialog.close()
+
self.translator.stop()
self.translation_thread.quit()
- self.translation_thread.wait()
+
+ # Only wait if thread is actually running
+ if self.translation_thread.isRunning():
+ # Wait up to 35 seconds for graceful shutdown
+ # (30s max API call timeout + 5s buffer)
+ if not self.translation_thread.wait(35_000):
+ logging.warning(
+ "Translation thread did not finish gracefully, terminating")
+ # Force terminate the thread if it doesn't stop
+ self.translation_thread.terminate()
+ # Give it a brief moment to terminate
+ if not self.translation_thread.wait(1_000):
+ logging.error("Translation thread could not be terminated")
super().closeEvent(event)
+
+ def save_geometry(self):
+ """Save the widget geometry to settings"""
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_VIEWER)
+ self.settings.settings.setValue("geometry", self.saveGeometry())
+ self.settings.end_group()
+
+ def load_geometry(self):
+ """Load the widget geometry from settings"""
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_VIEWER)
+ geometry = self.settings.settings.value("geometry")
+ if geometry is not None:
+ self.restoreGeometry(geometry)
+ else:
+ # Default size if no saved geometry
+ self.resize(1000, 800)
+ self.settings.end_group()
+
+ def save_splitter_sizes(self):
+ """Save splitter sizes to settings"""
+ if not hasattr(self, 'media_splitter'):
+ return
+
+ sizes = self.media_splitter.sizes()
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_VIEWER)
+
+ # Save separately for video and audio
+ if self.current_media_player == self.video_player:
+ self.settings.settings.setValue("video_splitter_sizes", sizes)
+ else:
+ self.settings.settings.setValue("audio_splitter_sizes", sizes)
+
+ self.settings.end_group()
+
+ def load_splitter_sizes(self):
+ """Load splitter sizes from settings"""
+ if not hasattr(self, 'media_splitter'):
+ return
+
+ self.settings.begin_group(Settings.Key.TRANSCRIPTION_VIEWER)
+
+ # Load sizes based on media type
+ if self.current_media_player == self.video_player:
+ sizes = self.settings.settings.value("video_splitter_sizes")
+ if sizes is None:
+ sizes = [800, 200]
+ else:
+ sizes = self.settings.settings.value("audio_splitter_sizes")
+ if sizes is None:
+ sizes = [950, 50]
+
+ self.settings.end_group()
+
+ # Apply sizes
+ if sizes:
+ self.media_splitter.setSizes([int(s) for s in sizes])
+
+ def on_splitter_moved(self, pos: int, index: int):
+ """Called when user moves the splitter"""
+ # Save sizes after a short delay to avoid saving on every pixel move
+ QTimer.singleShot(100, self.save_splitter_sizes)
diff --git a/buzz/widgets/update_dialog.py b/buzz/widgets/update_dialog.py
new file mode 100644
index 00000000..43487284
--- /dev/null
+++ b/buzz/widgets/update_dialog.py
@@ -0,0 +1,262 @@
+import logging
+import os
+import platform
+import subprocess
+import tempfile
+from typing import Optional
+
+from PyQt6.QtCore import Qt, QUrl
+from PyQt6.QtWidgets import QApplication
+from PyQt6.QtGui import QIcon
+from PyQt6.QtNetwork import QNetworkAccessManager, QNetworkRequest, QNetworkReply
+from PyQt6.QtWidgets import (
+ QDialog,
+ QVBoxLayout,
+ QHBoxLayout,
+ QLabel,
+ QPushButton,
+ QProgressBar,
+ QMessageBox,
+ QWidget,
+ QTextEdit,
+)
+
+from buzz.__version__ import VERSION
+from buzz.locale import _
+from buzz.update_checker import UpdateInfo
+from buzz.widgets.icon import BUZZ_ICON_PATH
+
+class UpdateDialog(QDialog):
+ """Dialog shows when an update is available"""
+ def __init__(
+ self,
+ update_info: UpdateInfo,
+ network_manager: Optional[QNetworkAccessManager] = None,
+ parent: Optional[QWidget] = None
+ ):
+ super().__init__(parent)
+
+ self.update_info = update_info
+
+ if network_manager is None:
+ network_manager = QNetworkAccessManager(self)
+ self.network_manager = network_manager
+
+ self._download_reply: Optional[QNetworkReply] = None
+ self._temp_file_paths: list = []
+ self._pending_urls: list = []
+ self._temp_dir: Optional[str] = None
+
+ self._setup_ui()
+
+ def _setup_ui(self):
+ self.setWindowTitle(_("Update Available"))
+ self.setWindowIcon(QIcon(BUZZ_ICON_PATH))
+ self.setMinimumWidth(450)
+
+ layout = QVBoxLayout(self)
+ layout.setSpacing(16)
+
+ #header
+ header_label = QLabel(
+ _("A new version of Buzz is available!")
+ )
+
+ header_label.setStyleSheet("font-size: 16px; font-weight: bold;")
+ layout.addWidget(header_label)
+
+ #Version info
+ version_layout = QHBoxLayout()
+
+ current_version_label = QLabel(_("Current version:"))
+ current_version_value = QLabel(f"{VERSION}")
+
+ new_version_label = QLabel(_("New version:"))
+ new_version_value = QLabel(f"{self.update_info.version}")
+
+ version_layout.addWidget(current_version_label)
+ version_layout.addWidget(current_version_value)
+ version_layout.addStretch()
+ version_layout.addWidget(new_version_label)
+ version_layout.addWidget(new_version_value)
+
+ layout.addLayout(version_layout)
+
+ #Release notes
+ if self.update_info.release_notes:
+ notes_label = QLabel(_("Release Notes:"))
+ notes_label.setStyleSheet("font-weight: bold;")
+ layout.addWidget(notes_label)
+
+ notes_text = QTextEdit()
+ notes_text.setReadOnly(True)
+ notes_text.setMarkdown(self.update_info.release_notes)
+ notes_text.setMaximumHeight(150)
+ layout.addWidget(notes_text)
+
+ #progress bar
+ self.progress_bar = QProgressBar()
+ self.progress_bar.setVisible(False)
+ self.progress_bar.setTextVisible(True)
+ layout.addWidget(self.progress_bar)
+
+ #Status label
+ self.status_label = QLabel("")
+ self.status_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
+ layout.addWidget(self.status_label)
+
+ #Buttons
+ button_layout = QVBoxLayout()
+
+ self.download_button = QPushButton(_("Download and Install"))
+ self.download_button.clicked.connect(self._on_download_clicked)
+ self.download_button.setDefault(True)
+
+ button_layout.addStretch()
+ button_layout.addWidget(self.download_button)
+
+ layout.addLayout(button_layout)
+
+ def _on_download_clicked(self):
+ """Starts downloading the installer"""
+ if not self.update_info.download_urls:
+ QMessageBox.warning(
+ self,
+ _("Error"),
+ _("No download URL available for your platform.")
+ )
+ return
+
+ self.download_button.setEnabled(False)
+ self.progress_bar.setVisible(True)
+ self.progress_bar.setValue(0)
+ self._temp_file_paths = []
+ self._pending_urls = list(self.update_info.download_urls)
+ self._temp_dir = tempfile.mkdtemp()
+ self._download_next_file()
+
+ def _download_next_file(self):
+ """Download the next file in the queue"""
+ if not self._pending_urls:
+ self._all_downloads_finished()
+ return
+
+ url_str = self._pending_urls[0]
+ file_index = len(self.update_info.download_urls) - len(self._pending_urls) + 1
+ total_files = len(self.update_info.download_urls)
+ self.status_label.setText(
+ _("Downloading file {} of {}...").format(file_index, total_files)
+ )
+
+ url = QUrl(url_str)
+ request = QNetworkRequest(url)
+
+ self._download_reply = self.network_manager.get(request)
+ self._download_reply.downloadProgress.connect(self._on_download_progress)
+ self._download_reply.finished.connect(self._on_download_finished)
+
+ def _on_download_progress(self, bytes_received: int, bytes_total: int):
+ """Update the progress bar during download"""
+ if bytes_total > 0:
+ progress = int((bytes_received / bytes_total) * 100)
+ self.progress_bar.setValue(progress)
+
+ mb_received = bytes_received / (1024 * 1024)
+ mb_total = bytes_total / (1024 * 1024)
+ file_index = len(self.update_info.download_urls) - len(self._pending_urls) + 1
+ total_files = len(self.update_info.download_urls)
+ self.status_label.setText(
+ _("Downloading file {} of {} ({:.1f} MB / {:.1f} MB)...").format(
+ file_index, total_files, mb_received, mb_total
+ )
+ )
+
+ def _on_download_finished(self):
+ """Handles download completion for one file"""
+ if self._download_reply is None:
+ return
+
+ if self._download_reply.error() != QNetworkReply.NetworkError.NoError:
+ error_msg = self._download_reply.errorString()
+ logging.error(f"Download failed: {error_msg}")
+
+ QMessageBox.critical(
+ self,
+ _("Download Failed"),
+ _("Failed to download the update: {}").format(error_msg)
+ )
+
+ self._reset_ui()
+ self._download_reply.deleteLater()
+ self._download_reply = None
+ return
+
+ data = self._download_reply.readAll().data()
+ self._download_reply.deleteLater()
+ self._download_reply = None
+
+ url_str = self._pending_urls.pop(0)
+
+ # Extract original filename from URL to preserve it
+ original_filename = QUrl(url_str).fileName()
+ if not original_filename:
+ original_filename = f"download_{len(self._temp_file_paths)}"
+
+ try:
+ temp_path = os.path.join(self._temp_dir, original_filename)
+ with open(temp_path, "wb") as f:
+ f.write(data)
+ self._temp_file_paths.append(temp_path)
+ logging.info(f"File saved to: {temp_path}")
+ except Exception as e:
+ logging.error(f"Failed to save file: {e}")
+ QMessageBox.critical(
+ self,
+ _("Error"),
+ _("Failed to save the installer: {}").format(str(e))
+ )
+ self._reset_ui()
+ return
+
+ self._download_next_file()
+
+ def _all_downloads_finished(self):
+ """All files downloaded, run the installer"""
+ self.progress_bar.setValue(100)
+ self.status_label.setText(_("Download complete!"))
+ self._run_installer()
+
+ def _run_installer(self):
+ """Run the downloaded installer"""
+ if not self._temp_file_paths:
+ return
+
+ installer_path = self._temp_file_paths[0]
+ system = platform.system()
+
+ try:
+ if system == "Windows":
+ subprocess.Popen([installer_path], shell=True)
+
+ elif system == "Darwin":
+ #open the DMG file
+ subprocess.Popen(["open", installer_path])
+
+ # Close the app so the installer can replace files
+ self.accept()
+ QApplication.quit()
+
+ except Exception as e:
+ logging.error(f"Failed to run installer: {e}")
+ QMessageBox.critical(
+ self,
+ _("Error"),
+ _("Failed to run the installer: {}").format(str(e))
+ )
+
+ def _reset_ui(self):
+ """Reset the UI to initial state after an error"""
+ self.download_button.setEnabled(True)
+ self.progress_bar.setVisible(False)
+ self.status_label.setText("")
+
diff --git a/buzz/widgets/video_player.py b/buzz/widgets/video_player.py
new file mode 100644
index 00000000..3c6288d4
--- /dev/null
+++ b/buzz/widgets/video_player.py
@@ -0,0 +1,172 @@
+import logging
+from typing import Tuple, Optional
+from PyQt6.QtCore import Qt, QUrl, pyqtSignal, QTime
+from PyQt6.QtMultimedia import QMediaPlayer, QAudioOutput, QMediaDevices
+from PyQt6.QtMultimediaWidgets import QVideoWidget
+from PyQt6.QtWidgets import QWidget, QVBoxLayout, QSlider, QPushButton, QHBoxLayout, QLabel, QSizePolicy
+from buzz.widgets.icon import PlayIcon, PauseIcon
+
+class VideoPlayer(QWidget):
+ position_ms_changed = pyqtSignal(int)
+
+ def __init__(self, file_path: str, parent=None):
+ super().__init__(parent)
+
+ self.range_ms: Optional[Tuple[int, int]] = None
+ self.position_ms = 0
+ self.duration_ms = 0
+ self.is_looping = False
+ self.is_slider_dragging = False
+ self.initial_frame_loaded = False
+
+ self.audio_output = QAudioOutput(self)
+ self.audio_output.setVolume(100)
+
+ # Log audio device info for debugging
+ default_device = QMediaDevices.defaultAudioOutput()
+ if default_device.isNull():
+ logging.warning("No default audio output device found!")
+ else:
+ logging.info(f"Audio output device: {default_device.description()}")
+
+ self.media_player = QMediaPlayer(self)
+ self.media_player.setSource(QUrl.fromLocalFile(file_path))
+ self.media_player.setAudioOutput(self.audio_output)
+
+ self.video_widget = QVideoWidget(self)
+ self.media_player.setVideoOutput(self.video_widget)
+
+ # Size constraints for video widget
+ self.video_widget.setMinimumHeight(200)
+ self.video_widget.setMaximumHeight(400)
+ self.video_widget.setSizePolicy(QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Preferred)
+
+ self.scrubber = QSlider(Qt.Orientation.Horizontal)
+ self.scrubber.setRange(0, 0)
+ self.scrubber.sliderMoved.connect(self.on_slider_moved)
+ self.scrubber.sliderPressed.connect(self.on_slider_pressed)
+ self.scrubber.sliderReleased.connect(self.on_slider_released)
+
+ #Track if user is dragging the slider
+ self.is_slider_dragging = False
+
+ self.play_icon = PlayIcon(self)
+ self.pause_icon = PauseIcon(self)
+
+ self.play_button = QPushButton("")
+ self.play_button.setIcon(self.play_icon)
+ self.play_button.clicked.connect(self.toggle_playback)
+ self.play_button.setMaximumWidth(40)
+ self.play_button.setMinimumHeight(30)
+
+ self.time_label = QLabel()
+ self.time_label.setAlignment(Qt.AlignmentFlag.AlignRight)
+
+ controls = QHBoxLayout()
+ controls.addWidget(self.play_button)
+ controls.addWidget(self.scrubber)
+ controls.addWidget(self.time_label)
+
+ layout = QVBoxLayout(self)
+ layout.setContentsMargins(0, 0, 0, 0)
+ layout.setSpacing(4)
+ layout.addWidget(self.video_widget, stretch=1)
+ layout.addLayout(controls)
+
+ self.setLayout(layout)
+
+
+ self.media_player.positionChanged.connect(self.on_position_changed)
+ self.media_player.durationChanged.connect(self.on_duration_changed)
+ self.media_player.playbackStateChanged.connect(self.on_playback_state_changed)
+ self.media_player.mediaStatusChanged.connect(self.on_media_status_changed)
+ self.media_player.errorOccurred.connect(self.on_error_occurred)
+
+ def on_error_occurred(self, error: QMediaPlayer.Error, error_string: str):
+ logging.error(f"Media player error: {error} - {error_string}")
+
+ def on_media_status_changed(self, status: QMediaPlayer.MediaStatus):
+ # Only do this once on initial load to show first frame
+ if self.initial_frame_loaded:
+ return
+ # Start playback when loaded to trigger frame decoding
+ if status == QMediaPlayer.MediaStatus.LoadedMedia:
+ self.media_player.play()
+ # Pause immediately when buffered to show first frame
+ elif status == QMediaPlayer.MediaStatus.BufferedMedia:
+ self.initial_frame_loaded = True
+ self.media_player.pause()
+
+ def toggle_playback(self):
+ if self.media_player.playbackState() == QMediaPlayer.PlaybackState.PlayingState:
+ self.media_player.pause()
+ else:
+ self.media_player.play()
+
+ def on_slider_moved(self, position):
+ self.set_position(position)
+
+ def on_slider_pressed(self):
+ """Called when user starts dragging the slider"""
+ self.is_slider_dragging = True
+
+ def on_slider_released(self):
+ """Called when user releases the slider"""
+ self.is_slider_dragging = False
+ # Update position to where use released
+ self.set_position(self.scrubber.value())
+
+ def set_position(self, position_ms: int):
+ self.media_player.setPosition(position_ms)
+
+ def on_position_changed(self, position_ms: int):
+ # Don't update slider if user is currently dragging it
+ if not self.is_slider_dragging:
+ self.scrubber.blockSignals(True)
+ self.scrubber.setValue(position_ms)
+ self.scrubber.blockSignals(False)
+
+ self.position_ms = position_ms
+ self.position_ms_changed.emit(position_ms)
+ self.update_time_label()
+
+ # If a range has been selected and video has reached the end of range
+ #loop back to the start of the range
+ if self.range_ms is not None and not self.is_looping:
+ start_range_ms, end_range_ms = self.range_ms
+ #Check if video is at or past the end of range
+ if position_ms >= (end_range_ms - 50):
+ self.is_looping = True
+ self.set_position(start_range_ms)
+ self.is_looping = False
+
+ def on_duration_changed(self, duration_ms: int):
+ self.scrubber.setRange(0, duration_ms)
+ self.duration_ms = duration_ms
+ self.update_time_label()
+
+ def on_playback_state_changed(self, state: QMediaPlayer.PlaybackState):
+ if state == QMediaPlayer.PlaybackState.PlayingState:
+ self.play_button.setIcon(self.pause_icon)
+ else:
+ self.play_button.setIcon(self.play_icon)
+
+ def update_time_label(self):
+ position_time = QTime(0, 0).addMSecs(self.position_ms).toString()
+ duration_time = QTime(0, 0).addMSecs(self.duration_ms).toString()
+ self.time_label.setText(f"{position_time} / {duration_time}")
+
+ def set_range(self, range_ms: Tuple[int, int]):
+ """Set a loop range. Only jump to start if current position is outside the range."""
+ self.range_ms = range_ms
+ start_range_ms, end_range_ms = range_ms
+
+ if self.position_ms < start_range_ms or self.position_ms > end_range_ms:
+ self.set_position(start_range_ms)
+
+ def clear_range(self):
+ """Clear the current loop range"""
+ self.range_ms = None
+
+ def stop(self):
+ self.media_player.stop()
diff --git a/ctc_forced_aligner b/ctc_forced_aligner
new file mode 160000
index 00000000..1f0a5f86
--- /dev/null
+++ b/ctc_forced_aligner
@@ -0,0 +1 @@
+Subproject commit 1f0a5f860d3d9daf3d94edb1c7d18f90d1702e5b
diff --git a/deepmultilingualpunctuation b/deepmultilingualpunctuation
new file mode 160000
index 00000000..5a0dd7f4
--- /dev/null
+++ b/deepmultilingualpunctuation
@@ -0,0 +1 @@
+Subproject commit 5a0dd7f4fd56687f59405aa8eba1144393d8b74b
diff --git a/demucs_repo b/demucs_repo
new file mode 160000
index 00000000..4273070a
--- /dev/null
+++ b/demucs_repo
@@ -0,0 +1 @@
+Subproject commit 4273070a70ded308ddfd0879d267bbd06f89a1b7
diff --git a/dll_backup/Readme.md b/dll_backup/Readme.md
deleted file mode 100644
index ecb57e32..00000000
--- a/dll_backup/Readme.md
+++ /dev/null
@@ -1,6 +0,0 @@
-DLLs extracted from whisper.cpp release v1.6.2
-https://github.com/ggerganov/whisper.cpp/actions/runs/9251036100
-https://github.com/ggerganov/whisper.cpp/commit/c7b6988678779901d02ceba1a8212d2c9908956e
-
-whisper.cpp submodule commit version should match the commit where the
-whisper.dll are extracted from to ensure compatibility.
diff --git a/dll_backup/whisper.dll b/dll_backup/whisper.dll
deleted file mode 100644
index 633079d5..00000000
Binary files a/dll_backup/whisper.dll and /dev/null differ
diff --git a/dll_backup/win32/whisper.dll b/dll_backup/win32/whisper.dll
deleted file mode 100644
index 67b8871a..00000000
Binary files a/dll_backup/win32/whisper.dll and /dev/null differ
diff --git a/docs/docs/cli.md b/docs/docs/cli.md
index 6dcbb0a1..a8df135a 100644
--- a/docs/docs/cli.md
+++ b/docs/docs/cli.md
@@ -60,14 +60,15 @@ Options:
(Yiddish), yo (Yoruba), zh (Chinese). Leave
empty to detect language.
-p, --prompt Initial prompt.
- -wt, --word-timestamps Generate word-level timestamps. (available since 1.2.0)
+ -w, --word-timestamps Generate word-level timestamps. (available since 1.2.0)
+ -e, --extract-speech Extract speech from audio before transcribing. (available since 1.3.0)
--openai-token OpenAI access token. Use only when
--model-type is openaiapi. Defaults to your
previously saved access token, if one exists.
--srt Output result in an SRT file.
--vtt Output result in a VTT file.
--txt Output result in a TXT file.
- --hide-gui Hide the main application window.
+ --hide-gui Hide the main application window. (available since 1.2.0)
-h, --help Displays help on commandline options.
--help-all Displays help including Qt specific options.
-v, --version Displays version information.
diff --git a/docs/docs/faq.md b/docs/docs/faq.md
index 9e78b221..88723b7f 100644
--- a/docs/docs/faq.md
+++ b/docs/docs/faq.md
@@ -3,70 +3,94 @@ title: FAQ
sidebar_position: 5
---
-#### 1. Where are the models stored?
+### 1. Where are the models stored?
- The models are stored in `~/.cache/Buzz` (Linux), `~/Library/Caches/Buzz`
- (Mac OS) or `%USERPROFILE%\AppData\Local\Buzz\Buzz\Cache` (Windows).
+The models are stored:
- Paste the location in your file manager to access the models.
+- Linux: `~/.cache/Buzz`
+- Mac OS: `~/Library/Caches/Buzz`
+- Windows: `%USERPROFILE%\AppData\Local\Buzz\Buzz\Cache`
-#### 2. What can I try if the transcription runs too slowly?
+Paste the location in your file manager to access the models or go to `Help -> Preferences -> Models` and click on `Show file location` button after downloading some model.
- Speech recognition requires large amount of computation, so one option is to try using a lower Whisper model size or using a Whisper.cpp model to run speech recognition of your computer. If you have access to a computer with GPU that has at least 6GB of VRAM you can try using the Faster Whisper model.
+### 2. What can I try if the transcription runs too slowly?
- Buzz also supports using OpenAI API to do speech recognition on a remote server. To use this feature you need to set OpenAI API key in Preferences. See [Preferences](https://chidiwilliams.github.io/buzz/docs/preferences) section for more details.
+Speech recognition requires large amount of computation, so one option is to try using a lower Whisper model size or using a Whisper.cpp model to run speech recognition of your computer. If you have access to a computer with GPU that has at least 6GB of VRAM you can try using the Faster Whisper model.
-#### 3. How to record system audio?
+Buzz also supports using OpenAI API to do speech recognition on a remote server. To use this feature you need to set OpenAI API key in Preferences. See [Preferences](https://chidiwilliams.github.io/buzz/docs/preferences) section for more details.
- To transcribe system audio you need to configure virtual audio device and connect output from the applications you want to transcribe to this virtual speaker. After that you can select it as source in the Buzz. See [Usage](https://chidiwilliams.github.io/buzz/docs/usage/live_recording) section for more details.
+### 3. How to record system audio?
- Relevant tools:
- - Mac OS - [BlackHole](https://github.com/ExistentialAudio/BlackHole).
- - Windows - [VB CABLE](https://vb-audio.com/Cable/)
- - Linux - [PulseAudio Volume Control](https://wiki.ubuntu.com/record_system_sound)
+To transcribe system audio you need to configure virtual audio device and connect output from the applications you want to transcribe to this virtual speaker. After that you can select it as source in the Buzz. See [Usage](https://chidiwilliams.github.io/buzz/docs/usage/live_recording) section for more details.
-#### 4. What model should I use?
+Relevant tools:
- Model size to use will depend on your hardware and use case. Smaller models will work faster but will have more inaccuracies. Larger models will be more accurate but will require more powerful hardware or longer time to transcribe.
+- Mac OS - [BlackHole](https://github.com/ExistentialAudio/BlackHole).
+- Windows - [VB CABLE](https://vb-audio.com/Cable/)
+- Linux - [PulseAudio Volume Control](https://wiki.ubuntu.com/record_system_sound)
- When choosing among large models consider the following. "Large" is the first released older model, "Large-V2" is later updated model with better accuracy, for some languages considered the most robust and stable. "Large-V3" is the latest model with the best accuracy in many cases, but some times can hallucinate or invent words that were never in the audio. "Turbo" model tries to get a good balance between speed and accuracy. The only sure way to know what model best suits your needs is to test them all in your language.
+### 4. What model should I use?
-#### 5. How to get GPU acceleration for faster transcription?
+Model size to use will depend on your hardware and use case. Smaller models will work faster but will have more inaccuracies. Larger models will be more accurate but will require more powerful hardware or longer time to transcribe.
- On Linux GPU acceleration is supported out of the box on Nvidia GPUs. If you still get any issues install [CUDA 12](https://developer.nvidia.com/cuda-downloads), [cuBLASS](https://developer.nvidia.com/cublas) and [cuDNN](https://developer.nvidia.com/cudnn).
+When choosing among large models consider the following. "Large" is the first released older model, "Large-V2" is later updated model with better accuracy, for some languages considered the most robust and stable. "Large-V3" is the latest model with the best accuracy in many cases, but some times can hallucinate or invent words that were never in the audio. "Turbo" model tries to get a good balance between speed and accuracy. The only sure way to know what model best suits your needs is to test them all in your language.
- On Windows see [this note](https://github.com/chidiwilliams/buzz/blob/main/CONTRIBUTING.md#gpu-support) on enabling CUDA GPU support.
+In addition to choosing an appropriate model size you also can choose whisper type.
+- **Whisper** is initial OpenAI implementation, it is accurate but slow and requires a lot of RAM.
+- **Faster Whisper** is an optimized implementation, it is orders of magnitude faster than regular Whisper and requires less RAM. Use this option if you have an Nvidia GPU with at least 6GB of VRAM.
+- **Whisper.cpp** is optimized C++ implementation, it quite fast and efficient and will use any brand of GPU. Whisper.cpp is capable of running real time transcription even on a modern laptop with integrated GPU. It can also run on CPU only. Use this option if you do not have Nvidia GPU.
+- **HuggingFace** option is a `Transformers` implementation and is good in that it supports wide range of custom models that may be optimized for a particular language. This option also supports [MMS](https://ai.meta.com/blog/multilingual-model-speech-recognition/) family of models from Meta AI that support over 1000 of worlds languages as well as [PEFT](https://github.com/huggingface/peft) adjustments to Whisper models.
- For Faster whisper CUDA 12 is required, computers with older CUDA versions will use CPU.
+### 5. How to get GPU acceleration for faster transcription?
-#### 6. How to fix `Unanticipated host error[PaErrorCode-9999]`?
+On Linux GPU acceleration is supported out of the box on Nvidia GPUs. If you still get any issues install [CUDA 12](https://developer.nvidia.com/cuda-downloads), [cuBLASS](https://developer.nvidia.com/cublas) and [cuDNN](https://developer.nvidia.com/cudnn).
- Check if there are any system settings preventing apps from accessing the microphone.
+On Windows GPU support is included in the installation `.exe`. CUDA 12 required, computers with older CUDA versions will use CPU. See [this note](https://github.com/chidiwilliams/buzz/blob/main/CONTRIBUTING.md#gpu-support) on enabling CUDA GPU support.
- On Windows, see if Buzz has permission to use the microphone in Settings -> Privacy -> Microphone.
+### 6. How to fix `Unanticipated host error[PaErrorCode-9999]`?
- See method 1 in this video https://www.youtube.com/watch?v=eRcCYgOuSYQ
+Check if there are any system settings preventing apps from accessing the microphone.
- For method 2 there is no need to uninstall the antivirus, but see if you can temporarily disable it or if there are settings that may prevent Buzz from accessing the microphone.
+On Windows, see if Buzz has permission to use the microphone in Settings -> Privacy -> Microphone.
-#### 7. Can I use Buzz on a computer without internet?
+See method 1 in this video https://www.youtube.com/watch?v=eRcCYgOuSYQ
- Yes, Buzz can be used without internet connection if you download the necessary models on some other computer that has the internet and manually move them to the offline computer. The easiest way to find where the models are stored is to go to Help -> Preferences -> Models. Then download some model, and push "Show file location" button. This will open the folder where the models are stored. Copy the models folder to the same location on the offline computer. F.e. for Linux it is `.cache/Buzz/models` in your home directory.
+For method 2 there is no need to uninstall the antivirus, but see if you can temporarily disable it or if there are settings that may prevent Buzz from accessing the microphone.
-#### 8. Buzz crashes, what to do?
+### 7. Can I use Buzz on a computer without internet?
- If a model download was incomplete or corrupted, Buzz may crash. Try to delete the downloaded model files in `Help -> Preferences -> Models` and re-download them.
+Yes, Buzz can be used without internet connection if you download the necessary models on some other computer that has the internet and manually move them to the offline computer. The easiest way to find where the models are stored is to go to Help -> Preferences -> Models. Then download some model, and push "Show file location" button. This will open the folder where the models are stored. Copy the models folder to the same location on the offline computer. F.e. for Linux it is `.cache/Buzz/models` in your home directory.
- If that does not help, check the log file for errors and [report the issue](https://github.com/chidiwilliams/buzz/issues) so we can fix it. The log file is located in `~/Library/Logs/Buzz` (Mac OS) or `%USERPROFILE%\AppData\Local\Buzz\Buzz\Logs` (Windows). On Linux run the Buzz from the command line to see the relevant messages.
+### 8. Buzz crashes, what to do?
+
+If a model download was incomplete or corrupted, Buzz may crash. Try to delete the downloaded model files in `Help -> Preferences -> Models` and re-download them.
+
+If that does not help, check the log file for errors and [report the issue](https://github.com/chidiwilliams/buzz/issues) so we can fix it. If possible attach the log file to the issue. Since Version `1.3.4`, to get to the logs folder go to `Help -> About Buzz` and click on `Show logs` button.
### 9. Where can I get latest development version?
- Latest development version will have latest bug fixes and most recent features. If you feel a bit adventurous it is recommended to try the latest development version as they needs some testing before they get released to everybody.
+Latest development version will have latest bug fixes and most recent features. If you feel a bit adventurous it is recommended to try the latest development version as they needs some testing before they get released to everybody.
- Linux users can get the latest version with this command `sudo snap install buzz --edge`
+- **Linux** users can get the latest version with this command `sudo snap install buzz --edge`
- For other platforms do the following:
- - Go to the [build section](https://github.com/chidiwilliams/buzz/actions/workflows/ci.yml?query=branch%3Amain)
- - Click on the link to the latest build
- - Scroll down to the artifacts section in the build page
- - Download the installation file. Please note that you need to be logged in the Github to see the download links.
\ No newline at end of file
+- **For other** platforms do the following:
+ 1. Go to the [build section](https://github.com/chidiwilliams/buzz/actions/workflows/ci.yml?query=branch%3Amain)
+ 2. Click on the link to the latest build, the most recent successful build entry in the list
+ 3. Scroll down to the artifacts section in the build page
+ 4. Download the installation file. Please note that you need to be logged in the Github to see the download links.
+ 
+
+### 10. Why is my system theme not applied to Buzz installed from Flatpak?
+
+For dark themes on Gnome environments you may need to install `gnome-themes-extra` package and set the following preferences:
+```
+gsettings set org.gnome.desktop.interface gtk-theme Adwaita-dark
+gsettings set org.gnome.desktop.interface color-scheme prefer-dark
+```
+
+If your system theme is not applied to Buzz installed from Flatpak Linux app store, ensure the desired theme is in `~/.themes` folder.
+
+You may need to copy the system themes to this folder `cp -r /usr/share/themes/ ~/.themes/` and give Flatpaks access to this folder `flatpak override --user --filesystem=~/.themes`.
+
+On Fedora run the following to install the necessary packages
+`sudo dnf install gnome-themes-extra qadwaitadecorations-qt{5,6} qt{5,6}-qtwayland`
\ No newline at end of file
diff --git a/docs/docs/index.md b/docs/docs/index.md
index 07f9da43..27600e0a 100644
--- a/docs/docs/index.md
+++ b/docs/docs/index.md
@@ -12,18 +12,22 @@ OpenAI's [Whisper](https://github.com/openai/whisper).

[](https://GitHub.com/chidiwilliams/buzz/releases/)
-> Buzz is better on the App Store. Get a Mac-native version of Buzz with a cleaner look, audio playback, drag-and-drop import, transcript editing, search, and much more.
->
-
## Features
- Import audio and video files and export transcripts to TXT, SRT, and
VTT ([Demo](https://www.loom.com/share/cf263b099ac3481082bb56d19b7c87fe))
- Transcription and translation from your computer's microphones to text (Resource-intensive and may not be
real-time, [Demo](https://www.loom.com/share/564b753eb4d44b55b985b8abd26b55f7))
+ - Presentation window for easy accessibility during events and presentations
+ - [Realtime translation](https://chidiwilliams.github.io/buzz/docs/usage/translations) with OpenAI API compatible AI
+- [Advanced Transcription Viewer](https://chidiwilliams.github.io/buzz/docs/usage/transcription_viewer) with search, playback controls, and speed adjustment
+- **Smart Interface** with conditional visibility and state persistence
+- **Professional Controls** including loop segments, follow audio, and keyboard shortcuts
- Supports [Whisper](https://github.com/openai/whisper#available-models-and-languages),
- [Whisper.cpp](https://github.com/ggerganov/whisper.cpp), [Faster Whisper](https://github.com/guillaumekln/faster-whisper),
+ [Whisper.cpp](https://github.com/ggerganov/whisper.cpp) (with Vulkan GPU acceleration), [Faster Whisper](https://github.com/guillaumekln/faster-whisper),
[Whisper-compatible Hugging Face models](https://huggingface.co/models?other=whisper), and
the [OpenAI Whisper API](https://platform.openai.com/docs/api-reference/introduction)
- [Command-Line Interface](#command-line-interface)
-- Available on Mac, Windows, and Linux
+- Speech separation before transcription for better accuracy on noisy audio
+- [Speaker identification](https://chidiwilliams.github.io/buzz/docs/usage/speaker_identification) in transcribed media
+- Available on Mac, Windows, and Linux
\ No newline at end of file
diff --git a/docs/docs/installation.md b/docs/docs/installation.md
index 0dfd2219..259bf329 100644
--- a/docs/docs/installation.md
+++ b/docs/docs/installation.md
@@ -3,52 +3,48 @@ title: Installation
sidebar_position: 2
---
-To install Buzz, download the [latest version](https://github.com/chidiwilliams/buzz/releases/latest) for your operating
-system. Buzz is available on **Mac** (Intel), **Windows**, and **Linux**. (For Apple Silicon, please see
-the [App Store version](https://apps.apple.com/us/app/buzz-captions/id6446018936?mt=12&itsct=apps_box_badge&itscg=30200).)
+To install Buzz, download the latest version for your operating
+system. Buzz is available on **Mac** (Intel and Apple silicon), **Windows**, and **Linux**.
-## macOS (Intel, macOS 11.7 and later)
+### macOS
-Install via [brew](https://brew.sh/):
+Download the `.dmg` from the [SourceForge](https://sourceforge.net/projects/buzz-captions/files/).
-```shell
-brew install --cask buzz
-```
+### Windows
-Alternatively, download and run the `Buzz-x.y.z.dmg` file.
+Get the installation files from the [SourceForge](https://sourceforge.net/projects/buzz-captions/files/).
-For Mac Silicon (and for a better experience on Mac Intel),
-download [Buzz Captions](https://apps.apple.com/us/app/buzz-captions/id6446018936?mt=12&itsct=apps_box_badge&itscg=30200)
-on the App Store.
-
-## Windows (Windows 10 and later)
-
-Download and run the `Buzz-x.y.z.exe` file.
+App is not signed, you will get a warning when you install it. Select `More info` -> `Run anyway`.
## Linux
+Buzz is available as a [Flatpak](https://flathub.org/apps/io.github.chidiwilliams.Buzz) or a [Snap](https://snapcraft.io/buzz).
+
+To install flatpak, run:
+```shell
+flatpak install flathub io.github.chidiwilliams.Buzz
+```
+
+[](https://flathub.org/en/apps/io.github.chidiwilliams.Buzz)
+
+To install snap, run:
```shell
sudo apt-get install libportaudio2 libcanberra-gtk-module libcanberra-gtk3-module
sudo snap install buzz
-sudo snap connect buzz:audio-record
sudo snap connect buzz:password-manager-service
-sudo snap connect buzz:pulseaudio
-sudo snap connect buzz:removable-media
```
[](https://snapcraft.io/buzz)
-Alternatively, on Ubuntu 20.04 and later, install the dependencies:
-
-```shell
-sudo apt-get install libportaudio2
-```
-
-Then, download and extract the `Buzz-x.y.z-unix.tar.gz` file
-
## PyPI
```shell
pip install buzz-captions
python -m buzz
```
+
+On Linux install system dependencies you may be missing
+```
+sudo apt-get install --no-install-recommends libyaml-dev libtbb-dev libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-shape0 libxcb-cursor0 libportaudio2 gettext libpulse0 ffmpeg
+```
+On versions prior to Ubuntu 24.04 install `sudo apt-get install --no-install-recommends libegl1-mesa`
diff --git a/docs/docs/preferences.md b/docs/docs/preferences.md
index fd5a86ef..b6c8bd5e 100644
--- a/docs/docs/preferences.md
+++ b/docs/docs/preferences.md
@@ -9,9 +9,9 @@ Open the Preferences window from the Menu bar, or click `Ctrl/Cmd + ,`.
### OpenAI API preferences
-**API Key** - key to authenticate your requests to OpenAI API. To get API key from OpenAI see [this article](https://help.openai.com/en/articles/4936850-where-do-i-find-my-openai-api-key).
+**API Key** - key to authenticate your requests to OpenAI API. To get API key from OpenAI see [this article](https://help.openai.com/en/articles/4936850-where-do-i-find-my-openai-api-key).
-**Base Url** - By default all requests are sent to API provided by OpenAI company. Their api url is `https://api.openai.com/v1/`. Compatible APIs are also provided by other companies. List of available API urls you can find on [discussion page](https://github.com/chidiwilliams/buzz/discussions/827)
+**Base URL** - By default all requests are sent to API provided by OpenAI company. Their API URL is `https://api.openai.com/v1/`. Compatible APIs are also provided by other companies. List of available API URLs and services to run yourself are available on [discussion page](https://github.com/chidiwilliams/buzz/discussions/827)
### Default export file name
@@ -21,37 +21,49 @@ as `Input Filename (transcribed on 19-Sep-2023 20-39-25).txt` by default.
Available variables:
-| Key | Description | Example |
-|-------------------|-------------------------------------------|----------------------------------------------------------------|
+| Key | Description | Example |
+| ----------------- | ----------------------------------------- | ---------------------------------------------------------------- |
| `input_file_name` | File name of the imported file | `audio` (e.g. if the imported file path was `/path/to/audio.wav` |
-| `task` | Transcription task | `transcribe`, `translate` |
-| `language` | Language code | `en`, `fr`, `yo`, etc. |
-| `model_type` | Model type | `Whisper`, `Whisper.cpp`, `Faster Whisper`, etc. |
-| `model_size` | Model size | `tiny`, `base`, `small`, `medium`, `large`, etc. |
-| `date_time` | Export time (format: `%d-%b-%Y %H-%M-%S`) | `19-Sep-2023 20-39-25` |
+| `task` | Transcription task | `transcribe`, `translate` |
+| `language` | Language code | `en`, `fr`, `yo`, etc. |
+| `model_type` | Model type | `Whisper`, `Whisper.cpp`, `Faster Whisper`, etc. |
+| `model_size` | Model size | `tiny`, `base`, `small`, `medium`, `large`, etc. |
+| `date_time` | Export time (format: `%d-%b-%Y %H-%M-%S`) | `19-Sep-2023 20-39-25` |
### Live transcript exports
-Live transcription export can be used to integrate Buzz with other applications like OBS Studio.
+Live transcription export can be used to integrate Buzz with other applications like OBS Studio.
When enabled, live text transcripts will be exported to a text file as they get generated and translated.
-If AI translation is enabled for live recordings, the translated text will also be exported to the text file.
-Filename for the translated text will end with `.translated.txt`.
+If AI translation is enabled for live recordings, the translated text will also be exported to the text file.
+Filename for the translated text will end with `.translated.txt`.
### Live transcription mode
Three transcription modes are available:
-**Append below** - New sentences will be added below existing with an empty space between them.
+**Append below** - New sentences will be added below existing with an empty space between them.
Last sentence will be at the bottom.
-**Append above** - New sentences will be added above existing with an empty space between them.
+**Append above** - New sentences will be added above existing with an empty space between them.
Last sentence will be at the top.
-**Append and correct** - New sentences will be added at the end of existing transcript without extra spaces between.
+**Append and correct** - New sentences will be added at the end of existing transcript without extra spaces between.
This mode will also try to correct errors at the end of previously transcribed sentences. This mode requires more
processing power and more powerful hardware to work.
+## Model Preferences
+
+This section lets you download new models for transcription and delete unused ones.
+
+For Whisper.cpp you can also download custom models. Select `Custom` in the model size list and paste the download url
+to the model `.bin` file. Use the link from "download" button from the Huggingface.
+
+To improve transcription speed and memory usage you can select a quantized version of some
+larger model. For example `q_5` version. Whisper.cpp base models in different quantizations are [available here](https://huggingface.co/ggerganov/whisper.cpp/tree/main). See also [custom models](https://github.com/chidiwilliams/buzz/discussions/866) discussion page for custom models in different languages.
+
+[](https://www.loom.com/share/cf263b099ac3481082bb56d19b7c87fe "Model preferences")
+
## Advanced Preferences
To keep preferences section simple for new users, some more advanced preferences are settable via OS environment variables. Set the necessary environment variables in your OS before starting Buzz or create a script to set them.
@@ -74,23 +86,39 @@ set SOME_OTHER_VARIABLE=some_other_value
"C:\Program Files (x86)\Buzz\Buzz.exe"
```
+Alternatively you can set environment variables in your OS settings. See [this guide](https://phoenixnap.com/kb/windows-set-environment-variable#ftoc-heading-4) or [this video](https://www.youtube.com/watch?v=bEroNNzqlF4) more information.
+
### Available variables
-**BUZZ_WHISPERCPP_N_THREADS** - Number of threads to use for Whisper.cpp model. Default is `4`.
+**BUZZ_WHISPERCPP_N_THREADS** - Number of threads to use for Whisper.cpp model. Default is half of available CPU cores.
-On a laptop with 16 threads setting `BUZZ_WHISPERCPP_N_THREADS=8` leads to some 15% speedup in transcription time.
-Increasing number of threads even more will lead in slower transcription time as results from parallel threads has to be
+On a laptop with 16 threads setting `BUZZ_WHISPERCPP_N_THREADS=8` leads to some 15% speedup in transcription time.
+Increasing number of threads even more will lead in slower transcription time as results from parallel threads has to be
combined to produce the final answer.
-**BUZZ_TRANSLATION_API_BASE_URl** - Base URL of OpenAI compatible API to use for translation.
+**BUZZ_TRANSLATION_API_BASE_URL** - Base URL of OpenAI compatible API to use for translation.
**BUZZ_TRANSLATION_API_KEY** - Api key of OpenAI compatible API to use for translation.
-**BUZZ_MODEL_ROOT** - Root directory to store model files.
+**BUZZ_MODEL_ROOT** - Root directory to store model files. You may also want to set `HF_HOME` to the same folder as some libraries used in Buzz download their models independently.
Defaults to [user_cache_dir](https://pypi.org/project/platformdirs/).
**BUZZ_FAVORITE_LANGUAGES** - Coma separated list of supported language codes to show on top of language list.
-**BUZZ_LOCALE** - Buzz UI locale to use. Defaults to one of supported system locales.
-
**BUZZ_DOWNLOAD_COOKIEFILE** - Location of a [cookiefile](https://github.com/yt-dlp/yt-dlp/wiki/FAQ#how-do-i-pass-cookies-to-yt-dlp) to use for downloading private videos or as workaround for anti-bot protection.
+
+**BUZZ_FORCE_CPU** - Will force Buzz to use CPU and not GPU, useful for setups with older GPU if that is slower than GPU or GPU has issues. Example usage `BUZZ_FORCE_CPU=true`. Available since `1.2.1`
+
+**BUZZ_REDUCE_GPU_MEMORY** - Will use 8bit quantization for Huggingface adn Faster Whisper transcriptions to reduce required GPU memory. Example usage `BUZZ_REDUCE_GPU_MEMORY=true`. Available since `1.4.0`
+
+**BUZZ_MERGE_REGROUP_RULE** - Custom regroup merge rule to use when combining transcripts with word-level timings. More information on available options [in stable-ts repo](https://github.com/jianfch/stable-ts?tab=readme-ov-file#regrouping-methods). Available since `1.3.0`
+
+**BUZZ_DISABLE_TELEMETRY** - Buzz collects basic OS name and architecture usage statistics to better focus development efforts. This variable lets disable collection of these statistics. Example usage `BUZZ_DISABLE_TELEMETRY=true`. Available since `1.3.0`
+
+**BUZZ_UPLOAD_URL** - Live recording transcripts and translations can be uploaded to a server for display on the web. Set this variable to the desired upload url. You can use [buzz-transcription-server](https://github.com/raivisdejus/buzz-transcription-server) as a server. Buzz will upload the following `json` via `POST` requests - `{"kind": "transcript", "text": "Sample transcript"}` or `{"kind": "translation", "text": "Sample translation"}`. Example usage `BUZZ_UPLOAD_URL=http://localhost:5000/upload`. Available since `1.3.0`
+
+Example of data collected by telemetry:
+```
+Buzz: 1.3.0, locale: ('lv_LV', 'UTF-8'), system: Linux, release: 6.14.0-27-generic, machine: x86_64, version: #27~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 17:38:49 UTC 2,
+```
+**BUZZ_PARAGRAPH_SPLIT_TIME** - Time in milliseconds of silence to split paragraphs in transcript and add two newlines when exporting the transcripts as text. Default is `2000` or 2 seconds. Available since `1.3.0`
\ No newline at end of file
diff --git a/docs/docs/usage/1_file_import.md b/docs/docs/usage/1_file_import.md
new file mode 100644
index 00000000..8b1086a8
--- /dev/null
+++ b/docs/docs/usage/1_file_import.md
@@ -0,0 +1,29 @@
+---
+title: File Import
+---
+
+**To import a file:**
+
+- Click Import Media File on the File menu (or the '+' icon on the toolbar, or **Command/Ctrl + O**).
+- Choose an audio or video file.
+- Select a task, language, and the model settings.
+- Click Run.
+- When the transcription status shows 'Completed', double-click on the row (or select the row and click the '⤢' icon) to
+ open the transcription.
+
+**Available options:**
+
+To reduce misspellings you can pass some commonly misspelled words in an `Initial prompt` that is available under `Advanced...` button. See this [guide on prompting](https://cookbook.openai.com/examples/whisper_prompting_guide#pass-names-in-the-prompt-to-prevent-misspellings).
+
+
+| Field | Options | Default | Description |
+| ------------------ | ------------------- | ------- |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Export As | "TXT", "SRT", "VTT" | "TXT" | Export file format |
+| Word-Level Timings | Off / On | Off | If checked, the transcription will generate a separate subtitle line for each word in the audio. Combine words into subtitles afterwards with the [resize option](https://chidiwilliams.github.io/buzz/docs/usage/edit_and_resize). |
+| Extract speech | Off / On | Off | If checked, speech will be extracted to a separate audio tack to improve accuracy. |
+
+(See the [Live Recording section](https://chidiwilliams.github.io/buzz/docs/usage/live_recording) for more information about the task, language, and quality settings.)
+
+[](https://www.loom.com/share/cf263b099ac3481082bb56d19b7c87fe "Media File Import on Buzz")
+
+**💡 Tip:** It is recommended to always select language to transcribe to as automatic language detection may result in unexpected results.
diff --git a/docs/docs/usage/live_recording.md b/docs/docs/usage/2_live_recording.md
similarity index 78%
rename from docs/docs/usage/live_recording.md
rename to docs/docs/usage/2_live_recording.md
index ead75f10..750c5874 100644
--- a/docs/docs/usage/live_recording.md
+++ b/docs/docs/usage/2_live_recording.md
@@ -7,18 +7,30 @@ To start a live recording:
- Select a recording task, language, quality, and microphone.
- Click Record.
-> **Note:** Transcribing audio using the default Whisper model is resource-intensive. Consider using the Whisper.cpp
-> Tiny model to get real-time performance.
+> **Note:** Transcribing audio using the default Whisper model is resource-intensive. Consider using the Whisper.cpp.
+> It supports GPU acceleration, if the model fits in GPU memory. Use smaller models for real-time performance.
| Field | Options | Default | Description |
|------------|------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| Task | "Transcribe", "Translate" | "Transcribe" | "Transcribe" converts the input audio into text in the selected language, while "Translate" converts it into text in English. |
+| Task | "Transcribe", "Translate to English" | "Transcribe" | "Transcribe" converts the input audio into text in the selected language, while "Translate to English" converts it into text in English. |
| Language | See [Whisper's documentation](https://github.com/openai/whisper#available-models-and-languages) for the full list of supported languages | "Detect Language" | "Detect Language" will try to detect the spoken language in the audio based on the first few seconds. However, selecting a language is recommended (if known) as it will improve transcription quality in many cases. |
-| Quality | "Very Low", "Low", "Medium", "High" | "Very Low" | The transcription quality determines the Whisper model used for transcription. "Very Low" uses the "tiny" model; "Low" uses the "base" model; "Medium" uses the "small" model; and "High" uses the "medium" model. The larger models produce higher-quality transcriptions, but require more system resources. See [Whisper's documentation](https://github.com/openai/whisper#available-models-and-languages) for more information about the models. |
| Microphone | [Available system microphones] | [Default system microphone] | Microphone for recording input audio. |
[](https://www.loom.com/share/564b753eb4d44b55b985b8abd26b55f7 "Live Recording on Buzz")
+#### Advanced preferences
+**Silence threshold** Set threshold to for transcriptions to be processed. If average volume level is under this setting the sentence will not be transcribed. Available since 1.4.4.
+
+**Line separator** Marking to add to the transcription and translation lines. Default value is two new lines (`\n\n`) that result in an empty space between translation or transcription lines. To have no empty line use `\n`. Available since 1.4.4.
+
+**Transcription step** If live recording mode is set to `Append and correct`, you can also set a transcription step. Shorter steps will reduce latency but cause larger load on the system. Monitor the `Queue` while transcribing in this mode, if it grows too much, increase the transcription step, to reduce load. Available since 1.4.4.
+
+**Hide unconfirmed** If live recording mode is set to `Append and correct`, you can also hide the unconfirmed part of the last transcript. This part may be incorrect as the Buzz has seen it only in one overlapping transcription segment. Hiding it will increase latency, but result will show only the correct transcripts. Available since 1.4.4.
+
+#### Presentation Window
+
+Buzz has an easy to use presentation window you can use to show live transcriptions during events and presentations. To open it start the recording and new options for the `Presentation window` will appear.
+
### Record audio playing from computer (macOS)
To record audio playing from an application on your computer, you may install an audio loopback driver (a program that
diff --git a/docs/docs/usage/translations.md b/docs/docs/usage/3_translations.md
similarity index 89%
rename from docs/docs/usage/translations.md
rename to docs/docs/usage/3_translations.md
index 23924f29..44ed71f5 100644
--- a/docs/docs/usage/translations.md
+++ b/docs/docs/usage/3_translations.md
@@ -2,9 +2,9 @@
title: Translations
---
-Default `Translation` task uses Whisper model ability to translate to English. Since version `1.0.0` Buzz supports additional AI translations to any other language.
+Default `Translation` task uses Whisper model ability to translate to English, however `Large-V3-Turbo` is not compatible with this standard. Buzz supports additional AI translations to any other language.
-To use translation feature you will need to configure OpenAI API key and translation settings. Set OpenAI API ket in Preferences. Buzz also supports custom locally running translation AIs that support OpenAI API. For more information on locally running AIs see [ollama](https://ollama.com/blog/openai-compatibility) or [LM Studio](https://lmstudio.ai/). For information on available custom APIs see this [discussion thread](https://github.com/chidiwilliams/buzz/discussions/827)
+To use translation feature you will need to configure OpenAI API key and translation settings. Set OpenAI API ket in Preferences. Buzz also supports custom locally running translation AIs that support OpenAI API. For more information on locally running AIs see [ollama](https://ollama.com/blog/openai-compatibility) or [LM Studio](https://lmstudio.ai/). For information on available custom APIs see this [discussion thread](https://github.com/chidiwilliams/buzz/discussions/827).
To configure translation for Live recordings enable it in Advances settings dialog of the Live Recording settings. Enter AI model to use and prompt with instructions for the AI on how to translate. Translation option is also available for files that already have speech recognised. Use Translate button on transcription viewer toolbar.
@@ -14,4 +14,4 @@ For AI to know how to translate enter translation instructions in the "Instructi
If you enable "Enable live recording transcription export" in Preferences, Live text transcripts will be exported to a text file as they get generated and translated. This file can be used to further integrate Live transcripts with other applications like OBS Studio.
-Approximate cost of translation for 1 hour long audio with ChatGPT `gpt-4o` model is around 0.50$
\ No newline at end of file
+Approximate cost of translation for 1 hour long audio with ChatGPT `gpt-4o` model is around $0.50.
diff --git a/docs/docs/usage/4_edit_and_resize.md b/docs/docs/usage/4_edit_and_resize.md
new file mode 100644
index 00000000..4231d8db
--- /dev/null
+++ b/docs/docs/usage/4_edit_and_resize.md
@@ -0,0 +1,13 @@
+---
+title: Edit and Resize
+---
+
+[](https://www.loom.com/share/cf263b099ac3481082bb56d19b7c87fe "Resize options")
+
+When transcript of some audio or video file is generated you can edit it and export to different subtitle formats or plain text. Double-click the transcript in the list of transcripts to see additional options for editing and exporting.
+
+Transcription view screen has option to resize the transcripts. Click on the "Resize" button so see available options. Transcripts that have been generated **with word-level timings** setting enabled can be combined into subtitles specifying different options, like maximum length of a subtitle and if subtitles should be split on punctuation. For transcripts that have been generated **without word-level timings** setting enabled can only be recombined specifying desired max length of a subtitle.
+
+If audio file is still present on the system word-level timing merge will also analyze the audio for silences to improve subtitle accuracy.
+
+The resize tool also has an option to extend end time of segments if you want the subtitles to be on the screen for longer. You can specify the amount of time in seconds to extend each subtitle segment. Buzz will add this amount of time to the end of each subtitle segment making sure that the end of a segment does not go over start of the next segment. This feature is available since 1.4.3.
\ No newline at end of file
diff --git a/docs/docs/usage/5_speaker_identification.md b/docs/docs/usage/5_speaker_identification.md
new file mode 100644
index 00000000..a8c8c097
--- /dev/null
+++ b/docs/docs/usage/5_speaker_identification.md
@@ -0,0 +1,9 @@
+---
+title: Speaker identification
+---
+
+When transcript of some audio or video file is generated you can identify speakers in the transcript. Double-click the transcript in the list of transcripts to see additional options for editing and exporting.
+
+Transcription view screen has option to identify speakers. Click on the "Identify speakers" button so see available options.
+
+If audio file is still present on the system speaker identification will mark each speakers sentences with appropriate label. You can preview 10 seconds of some random sentence of the identified speaker and rename the automatically identified label to speakers real name. If "Merge speaker sentences" checkbox is selected when you save the speaker labels, all consecutive sentences of the same speaker will be merged into one segment. Speaker identification is not available on Intel macOS.
\ No newline at end of file
diff --git a/docs/docs/usage/5_transcription_viewer.md b/docs/docs/usage/5_transcription_viewer.md
new file mode 100644
index 00000000..c075b9b3
--- /dev/null
+++ b/docs/docs/usage/5_transcription_viewer.md
@@ -0,0 +1,123 @@
+# Transcription Viewer
+
+The Buzz transcription viewer provides a powerful interface for reviewing, editing, and navigating through your transcriptions. This guide covers all the features available in the transcription viewer.
+
+## Overview
+
+The transcription viewer is organized into several key sections:
+
+- **Top Toolbar**: Contains view mode, export, translate, resize, and search
+- **Search Bar**: Find and navigate through transcript text
+- **Transcription Segments**: Table view of all transcription segments with timestamps
+- **Playback Controls**: Audio playback settings and speed controls
+- **Audio Player**: Standard media player with progress bar
+- **Current Segment Display**: Shows the currently selected or playing segment
+
+## Top Toolbar
+
+### View Mode Button
+- **Function**: Switch between different viewing modes
+- **Options**:
+ - **Timestamps**: Shows segments in a table format with start/end times
+ - **Text**: Shows combined text without timestamps
+ - **Translation**: Shows translated text (if available)
+
+### Export Button
+- **Function**: Export transcription in various formats
+- **Formats**: SRT, VTT, TXT, JSON, and more
+- **Usage**: Click to open export menu and select desired format
+
+### Translate Button
+- **Function**: Translate transcription to different languages
+- **Usage**: Click to open translation settings and start translation
+
+### Resize Button
+- **Function**: Adjust transcription segment boundaries
+- **Usage**: Click to open resize dialog for fine-tuning timestamps
+- **More information**: See [Edit and Resize](https://chidiwilliams.github.io/buzz/docs/usage/edit_and_resize) section
+
+### Playback Controls Button
+- **Function**: Show/hide playback control panel
+- **Shortcut**: `Ctrl+Alt+P` (Windows/Linux) or `Cmd+Alt+P` (macOS)
+- **Behavior**: Toggle button that shows/hides the playback controls below
+
+### Find Button
+- **Function**: Show/hide search functionality
+- **Shortcut**: `Ctrl+F` (Windows/Linux) or `Cmd+F` (macOS)
+- **Behavior**: Toggle button that shows/hides the search bar
+
+### Scroll to Current Button
+- **Function**: Automatically scroll to the currently playing text
+- **Shortcut**: `Ctrl+G` (Windows/Linux) or `Cmd+G` (macOS)
+- **Usage**: Click to jump to the current audio position in the transcript
+
+## Search Functionality
+
+### Search Bar
+The search bar appears below the toolbar when activated and provides:
+
+- **Search Input**: Type text to find in the transcription (wider input field for better usability)
+- **Navigation**: Up/down arrows to move between matches
+- **Status**: Shows current match position and total matches (e.g., "3 of 15 matches")
+- **Clear**: Remove search text and results (larger button for better accessibility)
+- **Results**: Displays found text with context
+- **Consistent Button Sizing**: All navigation buttons have uniform height for better visual consistency
+
+### Search Shortcuts
+- **`Ctrl+F` / `Cmd+F`**: Toggle search bar on/off
+- **`Enter`**: Find next match
+- **`Shift+Enter`**: Find previous match
+- **`Escape`**: Close search bar
+
+### Search Features
+- **Real-time Search**: Results update as you type
+- **Case-insensitive**: Finds matches regardless of capitalization
+- **Word Boundaries**: Respects word boundaries for accurate matching
+- **Cross-view Search**: Works in all view modes (Timestamps, Text, Translation)
+
+## Playback Controls
+
+### Loop Segment
+- **Function**: Automatically loop playback of selected segments
+- **Usage**: Check the "Loop Segment" checkbox
+- **Behavior**: When enabled, clicking on a transcript segment will set a loop range
+- **Visual Feedback**: Loop range is highlighted in the audio player
+
+### Follow Audio
+- **Function**: Automatically scroll to current audio position
+- **Usage**: Check the "Follow Audio" checkbox
+- **Behavior**: Transcript automatically follows the audio playback
+- **Benefits**: Easy to follow along with long audio files
+
+### Speed Controls
+- **Function**: Adjust audio playback speed
+- **Range**: 0.5x to 2.0x speed
+- **Controls**:
+ - **Speed Dropdown**: Select from preset speeds or enter custom value
+ - **Decrease Button (-)**: Reduce speed by 0.05x increments
+ - **Increase Button (+)**: Increase speed by 0.05x increments
+- **Persistence**: Speed setting is saved between sessions
+- **Button Sizing**: Speed control buttons match the size of search navigation buttons for visual consistency
+
+## Keyboard Shortcuts
+
+### Audio Playback
+- **`Ctrl+P` / `Cmd+P`**: Play/Pause audio
+- **`Ctrl+Shift+P` / `Cmd+Shift+P`**: Replay current segment from start
+
+### Timestamp Adjustment
+- **`Ctrl+←` / `Cmd+←`**: Decrease segment start time by 0.5s
+- **`Ctrl+→` / `Cmd+→`**: Increase segment start time by 0.5s
+- **`Ctrl+Shift+←` / `Cmd+Shift+←`**: Decrease segment end time by 0.5s
+- **`Ctrl+Shift+→` / `Cmd+Shift+→`**: Increase segment end time by 0.5s
+
+### Navigation
+- **`Ctrl+F` / `Cmd+F`**: Toggle search bar
+- **`Ctrl+Alt+P` / `Cmd+Alt+P`**: Toggle playback controls
+- **`Ctrl+G` / `Cmd+G`**: Scroll to current position
+- **`Ctrl+O` / `Cmd+O`**: Open file import dialog
+
+### Search
+- **`Enter`**: Find next match
+- **`Shift+Enter`**: Find previous match
+- **`Escape`**: Close search bar
diff --git a/docs/docs/usage/file_import.md b/docs/docs/usage/file_import.md
deleted file mode 100644
index 39a28ec5..00000000
--- a/docs/docs/usage/file_import.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-title: File Import
----
-
-To import a file:
-
-- Click Import Media File on the File menu (or the '+' icon on the toolbar, or **Command/Ctrl + O**).
-- Choose an audio or video file.
-- Select a task, language, and the model settings.
-- Click Run.
-- When the transcription status shows 'Completed', double-click on the row (or select the row and click the '⤢' icon) to
- open the transcription.
-
-| Field | Options | Default | Description |
-|--------------------|---------------------|---------|----------------------------------------------------------------------------------------------------------------------------------------------------------|
-| Export As | "TXT", "SRT", "VTT" | "TXT" | Export file format |
-| Word-Level Timings | Off / On | Off | If checked, the transcription will generate a separate subtitle line for each word in the audio. Enabled only when "Export As" is set to "SRT" or "VTT". |
-
-(See the [Live Recording section](#live-recording) for more information about the task, language, and quality settings.)
-
-[](https://www.loom.com/share/cf263b099ac3481082bb56d19b7c87fe "Media File Import on Buzz")
diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js
index 68983ef0..e155d619 100644
--- a/docs/docusaurus.config.js
+++ b/docs/docusaurus.config.js
@@ -1,28 +1,28 @@
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
-const lightCodeTheme = require('prism-react-renderer/themes/github');
-const darkCodeTheme = require('prism-react-renderer/themes/dracula');
+const lightCodeTheme = require("prism-react-renderer/themes/github");
+const darkCodeTheme = require("prism-react-renderer/themes/dracula");
/** @type {import('@docusaurus/types').Config} */
const config = {
- title: 'Buzz',
- tagline: 'Audio transcription and translation',
- favicon: 'img/favicon.ico',
+ title: "Buzz",
+ tagline: "Audio transcription and translation",
+ favicon: "img/favicon.ico",
// Set the production url of your site here
- url: 'https://chidiwilliams.github.io',
+ url: "https://chidiwilliams.github.io",
// Set the // pathname under which your site is served
// For GitHub pages deployment, it is often '//'
- baseUrl: '/buzz/',
+ baseUrl: "/buzz/",
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
- organizationName: 'chidiwilliams', // Usually your GitHub org/user name.
- projectName: 'buzz', // Usually your repo name.
+ organizationName: "chidiwilliams", // Usually your GitHub org/user name.
+ projectName: "buzz", // Usually your repo name.
- onBrokenLinks: 'throw',
- onBrokenMarkdownLinks: 'warn',
+ onBrokenLinks: "throw",
+ onBrokenMarkdownLinks: "warn",
trailingSlash: false,
@@ -30,23 +30,38 @@ const config = {
// metadata like html lang. For example, if your site is Chinese, you may want
// to replace "en" with "zh-Hans".
i18n: {
- defaultLocale: 'en',
- locales: ['en'],
+ defaultLocale: "en",
+ locales: ["en", "zh"],
+ path: "i18n",
+ localeConfigs: {
+ en: {
+ label: "English",
+ direction: "ltr",
+ htmlLang: "en-US",
+ path: "en",
+ },
+ zh: {
+ label: "简体中文",
+ direction: "ltr",
+ htmlLang: "zh-CN",
+ path: "zh",
+ },
+ },
},
presets: [
[
- 'classic',
+ "classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
- sidebarPath: require.resolve('./sidebars.js'),
+ sidebarPath: require.resolve("./sidebars.js"),
},
blog: {
showReadingTime: true,
},
theme: {
- customCss: require.resolve('./src/css/custom.css'),
+ customCss: require.resolve("./src/css/custom.css"),
},
}),
],
@@ -56,25 +71,28 @@ const config = {
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// Replace with your project's social card
- image: 'img/favicon.ico',
+ image: "img/favicon.ico",
navbar: {
- title: 'Buzz',
+ title: "Buzz",
logo: {
- alt: 'Buzz',
- src: 'img/favicon.ico',
+ alt: "Buzz",
+ src: "img/favicon.ico",
},
items: [
{
- type: 'docSidebar',
- sidebarId: 'tutorialSidebar',
- position: 'left',
- label: 'Docs',
+ type: "docSidebar",
+ sidebarId: "tutorialSidebar",
+ position: "left",
+ label: "Docs",
},
-// {to: '/blog', label: 'Blog', position: 'left'},
{
- href: 'https://github.com/chidiwilliams/buzz',
- label: 'GitHub',
- position: 'right',
+ href: "https://github.com/chidiwilliams/buzz",
+ label: "GitHub",
+ position: "right",
+ },
+ {
+ type: "localeDropdown",
+ position: "left",
},
],
},
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/cli.md b/docs/i18n/zh/docusaurus-plugin-content-docs/current/cli.md
new file mode 100644
index 00000000..eca461b2
--- /dev/null
+++ b/docs/i18n/zh/docusaurus-plugin-content-docs/current/cli.md
@@ -0,0 +1,87 @@
+---
+title: 命令行界面 (CLI)
+sidebar_position: 5
+---
+
+## 命令
+
+### `增加`
+
+启动一个新的转录任务。
+
+```
+Usage: buzz add [options] [file url file...]
+
+Options:
+ -t, --task The task to perform. Allowed: translate,
+ transcribe. Default: transcribe.
+ -m, --model-type Model type. Allowed: whisper, whispercpp,
+ huggingface, fasterwhisper, openaiapi. Default:
+ whisper.
+ -s, --model-size Model size. Use only when --model-type is
+ whisper, whispercpp, or fasterwhisper. Allowed:
+ tiny, base, small, medium, large. Default:
+ tiny.
+ --hfid Hugging Face model ID. Use only when
+ --model-type is huggingface. Example:
+ "openai/whisper-tiny"
+ -l, --language Language code. Allowed: af (Afrikaans), am
+ (Amharic), ar (Arabic), as (Assamese), az
+ (Azerbaijani), ba (Bashkir), be (Belarusian),
+ bg (Bulgarian), bn (Bengali), bo (Tibetan), br
+ (Breton), bs (Bosnian), ca (Catalan), cs
+ (Czech), cy (Welsh), da (Danish), de (German),
+ el (Greek), en (English), es (Spanish), et
+ (Estonian), eu (Basque), fa (Persian), fi
+ (Finnish), fo (Faroese), fr (French), gl
+ (Galician), gu (Gujarati), ha (Hausa), haw
+ (Hawaiian), he (Hebrew), hi (Hindi), hr
+ (Croatian), ht (Haitian Creole), hu
+ (Hungarian), hy (Armenian), id (Indonesian), is
+ (Icelandic), it (Italian), ja (Japanese), jw
+ (Javanese), ka (Georgian), kk (Kazakh), km
+ (Khmer), kn (Kannada), ko (Korean), la (Latin),
+ lb (Luxembourgish), ln (Lingala), lo (Lao), lt
+ (Lithuanian), lv (Latvian), mg (Malagasy), mi
+ (Maori), mk (Macedonian), ml (Malayalam), mn
+ (Mongolian), mr (Marathi), ms (Malay), mt
+ (Maltese), my (Myanmar), ne (Nepali), nl
+ (Dutch), nn (Nynorsk), no (Norwegian), oc
+ (Occitan), pa (Punjabi), pl (Polish), ps
+ (Pashto), pt (Portuguese), ro (Romanian), ru
+ (Russian), sa (Sanskrit), sd (Sindhi), si
+ (Sinhala), sk (Slovak), sl (Slovenian), sn
+ (Shona), so (Somali), sq (Albanian), sr
+ (Serbian), su (Sundanese), sv (Swedish), sw
+ (Swahili), ta (Tamil), te (Telugu), tg (Tajik),
+ th (Thai), tk (Turkmen), tl (Tagalog), tr
+ (Turkish), tt (Tatar), uk (Ukrainian), ur
+ (Urdu), uz (Uzbek), vi (Vietnamese), yi
+ (Yiddish), yo (Yoruba), zh (Chinese). Leave
+ empty to detect language.
+ -p, --prompt Initial prompt.
+ -w, --word-timestamps Generate word-level timestamps. (available since 1.2.0)
+ --openai-token OpenAI access token. Use only when
+ --model-type is openaiapi. Defaults to your
+ previously saved access token, if one exists.
+ --srt Output result in an SRT file.
+ --vtt Output result in a VTT file.
+ --txt Output result in a TXT file.
+ --hide-gui Hide the main application window. (available since 1.2.0)
+ -h, --help Displays help on commandline options.
+ --help-all Displays help including Qt specific options.
+ -v, --version Displays version information.
+
+Arguments:
+ files or urls Input file paths or urls. Url import availalbe since 1.2.0.
+```
+
+**示例**:
+
+```shell
+# 使用 OpenAI Whisper API 将两个 MP3 文件从法语翻译为英语
+buzz add --task translate --language fr --model-type openaiapi /Users/user/Downloads/1b3b03e4-8db5-ea2c-ace5-b71ff32e3304.mp3 /Users/user/Downloads/koaf9083k1lkpsfdi0.mp3
+
+# 使用 Whisper.cpp "small" 模型转录一个 MP4 文件,并立即导出为 SRT 和 VTT 文件
+buzz add --task transcribe --model-type whispercpp --model-size small --prompt "My initial prompt(我的初始提示)" --srt --vtt /Users/user/Downloads/buzz/1b3b03e4-8db5-ea2c-ace5-b71ff32e3304.mp4
+```
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/faq.md b/docs/i18n/zh/docusaurus-plugin-content-docs/current/faq.md
new file mode 100644
index 00000000..48425cb3
--- /dev/null
+++ b/docs/i18n/zh/docusaurus-plugin-content-docs/current/faq.md
@@ -0,0 +1,94 @@
+---
+title: 常见问题(FAQ)
+sidebar_position: 5
+---
+
+### 1. 模型存储在哪里?
+
+模型存储在以下位置:
+
+- Linux: `~/.cache/Buzz`
+- Mac OS: `~/Library/Caches/Buzz`
+- Windows: `%USERPROFILE%\AppData\Local\Buzz\Buzz\Cache`
+
+将上述路径粘贴到文件管理器中即可访问模型。
+
+### 2. 如果转录速度太慢,我可以尝试什么?
+
+语音识别需要大量计算资源,您可以尝试使用较小的 Whisper 模型,或者使用 Whisper.cpp 模型在本地计算机上运行语音识别。如果您的计算机配备了至少 6GB VRAM 的 GPU,可以尝试使用 Faster Whisper 模型。
+
+Buzz 还支持使用 OpenAI API 在远程服务器上进行语音识别。要使用此功能,您需要在“偏好设置”中设置 OpenAI API 密钥。详情请参见 [偏好设置](https://chidiwilliams.github.io/buzz/docs/preferences) 部分。
+
+### 3. 如何录制系统音频?
+
+要转录系统音频,您需要配置虚拟音频设备,并将希望转录的应用程序输出连接到该虚拟扬声器。然后,您可以在 Buzz 中选择该设备作为音源。详情请参见 [使用指南](https://chidiwilliams.github.io/buzz/docs/usage/live_recording) 部分。
+
+相关工具:
+
+- Mac OS - [BlackHole](https://github.com/ExistentialAudio/BlackHole)
+- Windows - [VB CABLE](https://vb-audio.com/Cable/)
+- Linux - [PulseAudio Volume Control](https://wiki.ubuntu.com/record_system_sound)
+
+### 4. 我应该使用哪个模型?
+
+选择模型大小取决于您的硬件和使用场景。较小的模型运行速度更快,但准确性较低;较大的模型更准确,但需要更强的硬件或更长的转录时间。
+
+在选择大模型时,请参考以下信息:
+
+- **“Large”** 是最早发布的模型
+- **“Large-V2”** 是后续改进版,准确率更高,被认为是某些语言中最稳定的选择
+- **“Large-V3”** 是最新版本,在许多情况下准确性最佳,但有时可能会产生错误的单词
+- **“Turbo”** 模型在速度和准确性之间取得了良好平衡
+
+最好的方法是测试所有模型,以找到最适合您语言的选项。
+
+### 5. 如何使用 GPU 加速以提高转录速度?
+
+- 在 **Linux** 上,Nvidia GPU 受支持,可直接使用 GPU 加速。如果遇到问题,请安装 [CUDA 12](https://developer.nvidia.com/cuda-downloads)、[cuBLAS](https://developer.nvidia.com/cublas) 和 [cuDNN](https://developer.nvidia.com/cudnn)。
+- 在 **Windows** 上,请参阅[此说明](https://github.com/chidiwilliams/buzz/blob/main/CONTRIBUTING.md#gpu-support) 以启用 CUDA GPU 支持。
+- **Faster Whisper** 需要 CUDA 12,使用旧版 CUDA 的计算机将默认使用 CPU。
+
+### 6. 如何修复 `Unanticipated host error[PaErrorCode-9999]`?
+
+请检查系统设置,确保没有阻止应用访问麦克风。
+
+- **Windows** 用户请检查“设置 -> 隐私 -> 麦克风”,确保 Buzz 有权限使用麦克风。
+- 参考此视频的 [方法 1](https://www.youtube.com/watch?v=eRcCYgOuSYQ)。
+- **方法 2** 无需卸载防病毒软件,但可以尝试暂时禁用,或检查是否有相关设置阻止 Buzz 访问麦克风。
+
+### 7. 可以在没有互联网的计算机上使用 Buzz 吗?
+
+是的,您可以在离线计算机上使用 Buzz,但需要在另一台联网计算机上下载所需模型,并手动将其移动到离线计算机。
+
+最简单的方法是:
+
+1. 打开“帮助 -> 偏好设置 -> 模型”
+2. 下载所需的模型
+3. 点击“显示文件位置”按钮,打开存储模型的文件夹
+4. 将该模型文件夹复制到离线计算机的相同位置
+
+例如,在 Linux 上,模型存储在 `~/.cache/Buzz/models` 目录中。
+
+### 8. Buzz 崩溃了,怎么办?
+
+如果模型下载不完整或损坏,Buzz 可能会崩溃。尝试删除已下载的模型文件,然后重新下载。
+
+如果问题仍然存在,请检查日志文件并[报告问题](https://github.com/chidiwilliams/buzz/issues),以便我们修复。日志文件位置如下:
+
+- Mac OS: `~/Library/Logs/Buzz`
+- Windows: `%USERPROFILE%\AppData\Local\Buzz\Buzz\Logs`
+- Linux: 在终端运行 Buzz 查看相关错误信息。
+
+### 9. 哪里可以获取最新的开发版本?
+
+最新的开发版本包含最新的错误修复和新功能。如果您喜欢尝试新功能,可以下载最新的开发版本进行测试。
+
+- **Linux** 用户可以运行以下命令获取最新版本:
+ ```sh
+ sudo snap install buzz --edge
+ ```
+- **其他平台** 请按以下步骤操作:
+ 1. 访问 [构建页面](https://github.com/chidiwilliams/buzz/actions/workflows/ci.yml?query=branch%3Amain)
+ 2. 点击最新构建的链接
+ 3. 在构建页面向下滚动到“Artifacts”部分
+ 4. 下载安装文件(请注意,您需要登录 GitHub 才能看到下载链接)
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/index.md b/docs/i18n/zh/docusaurus-plugin-content-docs/current/index.md
new file mode 100644
index 00000000..86967bbb
--- /dev/null
+++ b/docs/i18n/zh/docusaurus-plugin-content-docs/current/index.md
@@ -0,0 +1,23 @@
+---
+title: 介绍
+sidebar_position: 1
+---
+
+在您的个人电脑上离线转录和翻译音频。由 OpenAI 的 [Whisper](https://github.com/openai/whisper) 提供支持。
+
+
+[](https://github.com/chidiwilliams/buzz/actions/workflows/ci.yml)
+[](https://codecov.io/github/chidiwilliams/buzz)
+
+[](https://GitHub.com/chidiwilliams/buzz/releases/)
+
+## 功能
+
+- 导入音频和视频文件,并将转录内容导出为 TXT、SRT 和 VTT 格式([演示](https://www.loom.com/share/cf263b099ac3481082bb56d19b7c87fe))
+- 从电脑麦克风转录和翻译为文本(资源密集型,可能无法实时完成,[演示](https://www.loom.com/share/564b753eb4d44b55b985b8abd26b55f7))
+- 支持 [Whisper](https://github.com/openai/whisper#available-models-and-languages)、
+ [Whisper.cpp](https://github.com/ggerganov/whisper.cpp)、[Faster Whisper](https://github.com/guillaumekln/faster-whisper)、
+ [Whisper 兼容的 Hugging Face 模型](https://huggingface.co/models?other=whisper) 和
+ [OpenAI Whisper API](https://platform.openai.com/docs/api-reference/introduction)
+- [命令行界面](#命令行界面)
+- 支持 Mac、Windows 和 Linux
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/installation.md b/docs/i18n/zh/docusaurus-plugin-content-docs/current/installation.md
new file mode 100644
index 00000000..b3bbc7c1
--- /dev/null
+++ b/docs/i18n/zh/docusaurus-plugin-content-docs/current/installation.md
@@ -0,0 +1,47 @@
+---
+title: 安装
+sidebar_position: 2
+---
+
+要安装 Buzz,请下载适用于您操作系统的[最新版本](https://github.com/chidiwilliams/buzz/releases/latest)。Buzz 支持 **Mac**(Intel)、**Windows** 和 **Linux** 系统。
+
+## macOS(Intel,macOS 11.7 及更高版本)
+
+通过 [brew](https://brew.sh/) 安装:
+
+```shell
+brew install --cask buzz
+```
+
+或者,下载并运行 `Buzz-x.y.z.dmg` 文件。
+
+对于 Mac Silicon 用户(以及希望在 Mac Intel 上获得更好体验的用户)。
+
+## Windows(Windows 10 及更高版本)
+
+下载并运行 `Buzz-x.y.z.exe` 文件。
+
+## Linux
+
+```shell
+sudo apt-get install libportaudio2 libcanberra-gtk-module libcanberra-gtk3-module
+sudo snap install buzz
+sudo snap connect buzz:password-manager-service
+```
+
+[](https://snapcraft.io/buzz)
+
+或者,在 Ubuntu 20.04 及更高版本上,安装依赖项:
+
+```shell
+sudo apt-get install libportaudio2
+```
+
+然后,下载并解压 `Buzz-x.y.z-unix.tar.gz` 文件。
+
+## PyPI
+
+```shell
+pip install buzz-captions
+python -m buzz
+```
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/preferences.md b/docs/i18n/zh/docusaurus-plugin-content-docs/current/preferences.md
new file mode 100644
index 00000000..b699039c
--- /dev/null
+++ b/docs/i18n/zh/docusaurus-plugin-content-docs/current/preferences.md
@@ -0,0 +1,92 @@
+---
+title: 偏好设置
+sidebar_position: 4
+---
+
+从菜单栏打开偏好设置窗口,或点击 `Ctrl/Cmd + ,`。
+
+## 常规偏好设置
+
+### OpenAI API 偏好设置
+
+**API 密钥** - 用于验证 OpenAI API 请求的密钥。要获取 OpenAI 的 API 密钥,请参阅 [此文章](https://help.openai.com/en/articles/4936850-where-do-i-find-my-openai-api-key)。
+
+**基础 URL** - 默认情况下,所有请求都会发送到 OpenAI 公司提供的 API。他们的 API URL 是 `https://api.openai.com/v1/`。其他公司也提供了兼容的 API。你可以在 [讨论页面](https://github.com/chidiwilliams/buzz/discussions/827) 找到可用的 API URL 列表。
+
+### 默认导出文件名
+
+设置文件识别的默认导出文件名。例如,值为 `{{ input_file_name }} ({{ task }}d on {{ date_time }})` 时,TXT 导出文件将默认保存为`Input Filename (transcribed on 19-Sep-2023 20-39-25).txt`(输入文件名 (转录于 19-Sep-2023 20-39-25).txt)。
+
+可用变量:
+
+| 键 | 描述 | 示例 |
+| ----------------- | ------------------------------------- | ---------------------------------------------------------- |
+| `input_file_name` | 导入文件的文件名 | `audio`(例如,如果导入的文件路径是 `/path/to/audio.wav`) |
+| `task` | 转录任务 | `transcribe`, `translate` |
+| `language` | 语言代码 | `en`, `fr`, `yo` 等 |
+| `model_type` | 模型类型 | `Whisper`, `Whisper.cpp`, `Faster Whisper` 等 |
+| `model_size` | 模型大小 | `tiny`, `base`, `small`, `medium`, `large` 等 |
+| `date_time` | 导出时间(格式:`%d-%b-%Y %H-%M-%S`) | `19-Sep-2023 20-39-25` |
+
+### 实时识别导出
+
+实时识别导出可用于将 Buzz 与其他应用程序(如 OBS Studio)集成。
+启用后,实时文本识别将在生成和翻译时导出到文本文件。
+
+如果为实时录音启用了 AI 翻译,翻译后的文本也将导出到文本文件。
+翻译文本的文件名将以 `.translated.txt` 结尾。
+
+### 实时识别模式
+
+有三种转识别式可用:
+
+**下方追加** - 新句子将在现有内容下方添加,并在它们之间留有空行。最后一句话将位于底部。
+
+**上方追加** - 新句子将在现有内容上方添加,并在它们之间留有空行。最后一句话将位于顶部。
+
+**追加并修正** - 新句子将在现有转录内容的末尾添加,中间不留空行。此模式还会尝试修正之前转录句子末尾的错误。此模式需要更多的处理能力和更强大的硬件支持。
+
+## 高级偏好设置
+
+为了简化新用户的偏好设置部分,一些更高级的设置可以通过操作系统环境变量进行配置。在启动 Buzz 之前,请在操作系统中设置必要的环境变量,或创建一个脚本来设置它们。
+
+在 MacOS 和 Linux 上,创建 `run_buzz.sh`,内容如下:
+
+```bash
+#!/bin/bash
+export VARIABLE=value
+export SOME_OTHER_VARIABLE=some_other_value
+buzz
+```
+
+在 Windows 上,创建 `run_buzz.bat`,内容如下:
+
+```bat
+@echo off
+set VARIABLE=value
+set SOME_OTHER_VARIABLE=some_other_value
+"C:\Program Files (x86)\Buzz\Buzz.exe"
+```
+
+或者,你可以在操作系统设置中设置环境变量。更多信息请参阅 [此指南](https://phoenixnap.com/kb/windows-set-environment-variable#ftoc-heading-4) 或 [此视频](https://www.youtube.com/watch?v=bEroNNzqlF4)。
+
+### 可用变量
+
+**BUZZ_WHISPERCPP_N_THREADS** - Whisper.cpp 模型使用的线程数。默认为 `4`。
+在具有 16 线程的笔记本电脑上,设置 `BUZZ_WHISPERCPP_N_THREADS=8` 可以使转录时间加快约 15%。
+进一步增加线程数会导致转录时间变慢,因为并行线程的结果需要合并以生成最终答案。
+
+**BUZZ_TRANSLATION_API_BASE_URl** - 用于翻译的 OpenAI 兼容 API 的基础 URL。
+
+**BUZZ_TRANSLATION_API_KEY** - 用于翻译的 OpenAI 兼容 API 的密钥。
+
+**BUZZ_MODEL_ROOT** - 存储模型文件的根目录。
+默认为 [user_cache_dir](https://pypi.org/project/platformdirs/)。
+
+**BUZZ_FAVORITE_LANGUAGES** - 以逗号分隔的支持语言代码列表,显示在语言列表顶部。
+
+**BUZZ_DOWNLOAD_COOKIEFILE** - 用于下载私有视频或绕过反机器人保护的 [cookiefile](https://github.com/yt-dlp/yt-dlp/wiki/FAQ#how-do-i-pass-cookies-to-yt-dlp) 的位置。
+
+**BUZZ_FORCE_CPU** - 强制 Buzz 使用 CPU 而不是 GPU,适用于旧 GPU 较慢或 GPU 有问题的设置。示例用法:`BUZZ_FORCE_CPU=true`。自 `1.2.1` 版本起可用。
+
+**BUZZ_MERGE_REGROUP_RULE** - 合并带有单词级时间戳的转录时使用的自定义重新分组规则。更多可用选项的信息请参阅 [stable-ts 仓库](https://github.com/jianfch/stable-ts?tab=readme-ov-file#regrouping-methods)。自 `1.3.0` 版本起可用。
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/1_file_import.md b/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/1_file_import.md
new file mode 100644
index 00000000..5f81620f
--- /dev/null
+++ b/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/1_file_import.md
@@ -0,0 +1,21 @@
+---
+title: 文件导入
+---
+
+若要导入文件:
+
+- 点击“文件”菜单中的“导入媒体文件”(或者点击工具栏上的“+”图标,也可以使用快捷键 **Command/Ctrl + O**)。
+- 选择一个音频或视频文件。
+- 选择任务、语言和模型设置。
+- 点击“运行”。
+- 当转录状态显示为“已完成”时,双击该行(或者选中该行后点击“⤢”图标)即可打开转录内容。
+
+| 字段 | 选项 | 默认值 | 描述 |
+| ------------ | ------------------- | ------ | -------------------------------------------------------------------------------------------------------- |
+| 导出格式 | "TXT"、"SRT"、"VTT" | "TXT" | 导出文件的格式 |
+| 单词级时间戳 | 关闭 / 开启 | 关闭 | 若勾选此项,转录内容将为音频中的每个单词生成单独的字幕行。仅当“导出格式”设置为“SRT”或“VTT”时此选项可用。 |
+| 提取语音 | 关闭 / 开启 | 关闭 | 若勾选此项,语音将被提取到单独的音轨中以提高转录准确性。此功能自 1.3.0 版本起可用。 |
+
+(有关任务、语言和质量设置的更多信息,请参阅[实时录制部分](https://chidiwilliams.github.io/buzz/zh/docs/usage/live_recording)。)
+
+[](https://www.loom.com/share/cf263b099ac3481082bb56d19b7c87fe "Buzz 中的媒体文件导入")
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/2_live_recording.md b/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/2_live_recording.md
new file mode 100644
index 00000000..b75b5068
--- /dev/null
+++ b/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/2_live_recording.md
@@ -0,0 +1,62 @@
+---
+title: 实时录制
+---
+
+若要开始实时录制,请按以下步骤操作:
+
+- 选择录制任务、语言、质量和麦克风。
+- 点击“录制”。
+
+> **注意:** 使用默认的 Whisper 模型转录音频会占用大量系统资源。若想实现实时性能,可考虑使用 Whisper.cpp Tiny 模型。
+
+| 字段 | 选项 | 默认值 | 描述 |
+| ------ | --------------------------------------------------------------------------------------------------------- | ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| 任务 | "转录"、"翻译" | "转录" | "转录"会将输入音频转换为所选语言的文本,而"翻译"则会将其转换为英文文本。 |
+| 语言 | 完整的支持语言列表请参阅 [Whisper 文档](https://github.com/openai/whisper#available-models-and-languages) | "自动检测语言" | "自动检测语言"会根据音频的前几秒尝试检测其中的语言。不过,如果已知音频语言,建议手动选择,因为在很多情况下这可以提高转录质量。 |
+| 质量 | "极低"、"低"、"中"、"高" | "极低" | 转录质量决定了用于转录的 Whisper 模型。"极低"使用"tiny"模型;"低"使用"base"模型;"中"使用"small"模型;"高"使用"medium"模型。模型越大,转录质量越高,但所需的系统资源也越多。更多关于模型的信息请参阅 [Whisper 文档](https://github.com/openai/whisper#available-models-and-languages)。 |
+| 麦克风 | [系统可用麦克风] | [系统默认麦克风] | 用于录制输入音频的麦克风。 |
+
+[](https://www.loom.com/share/564b753eb4d44b55b985b8abd26b55f7 "在Buzz 上实时转录")
+
+### 录制电脑播放的音频(macOS)
+
+若要录制电脑应用程序播放的音频,你可以安装一个音频回环驱动程序(一种可让你创建虚拟音频设备的程序)。本指南后续将介绍在 Mac 上使用 [BlackHole](https://github.com/ExistentialAudio/BlackHole) 的方法,但你也可以根据自己的操作系统选择其他替代方案(例如 [LoopBeAudio](https://nerds.de/en/loopbeaudio.html)、[LoopBack](https://rogueamoeba.com/loopback/) 和 [Virtual Audio Cable](https://vac.muzychenko.net/en/))。
+
+1. [通过 Homebrew 安装 BlackHole](https://github.com/ExistentialAudio/BlackHole#option-2-install-via-homebrew)
+
+ ```shell
+ brew install blackhole-2ch
+ ```
+
+2. 通过聚焦搜索(Spotlight)或直接打开 `/Applications/Utilities/Audio Midi Setup.app` 来启动“音频 MIDI 设置”。
+
+
+
+3. 点击窗口左下角的“+”图标,然后选择“创建多输出设备”。
+
+
+
+4. 将你的默认扬声器和 BlackHole 添加到这个多输出设备中。
+
+
+
+5. 将此多输出设备设置为你的扬声器(可在应用程序内或系统全局进行设置),这样音频就会被输送到 BlackHole 中。
+
+6. 打开 Buzz 软件,选择 BlackHole 作为录音的麦克风,接着像平常一样进行录制,你就能看到通过 BlackHole 播放的音频的转录文本了。
+
+### 录制电脑播放的音频(Windows)
+
+若要转录系统音频,你需要配置虚拟音频设备,并将你想要转录的应用程序的音频输出连接到该虚拟扬声器。之后,你就可以在 Buzz 中选择它作为音频源。
+
+1. 安装 [VB CABLE](https://vb - audio.com/Cable/) 作为虚拟音频设备。
+2. 使用 Windows 声音设置进行配置。右键单击系统托盘里的扬声器图标,然后选择“打开声音设置”。在“选择你的输出设备”下拉菜单中,选择“CABLE Input”,将所有系统声音发送到虚拟设备;或者使用“高级声音选项”,选择要将声音输出到该设备的应用程序。
+
+### 录制电脑播放的音频(Linux)
+
+正如 [Ubuntu 维基](https://wiki.ubuntu.com/record_system_sound?uselang=zh) 中所述,在任何使用 PulseAudio 的 Linux 系统上,你可以将应用程序的音频重定向到虚拟扬声器。之后,你可以在 Buzz 中选择它作为音频源。
+
+总体步骤如下:
+
+1. 启动会产生你想要转录的声音的应用程序,并开始播放。例如,在媒体播放器中播放视频。
+2. 启动 Buzz 并打开实时录制界面,以便查看设置。
+3. 在 PulseAudio 音量控制(`pavucontrol`)的“录制”选项卡中,配置从你想要转录声音的应用程序到 Buzz 的声音路由。
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/3_translations.md b/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/3_translations.md
new file mode 100644
index 00000000..2bde40db
--- /dev/null
+++ b/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/3_translations.md
@@ -0,0 +1,17 @@
+---
+title: 翻译功能
+---
+
+默认的“翻译”任务借助 Whisper 模型将内容翻译成英语。从 `1.0.0` 版本开始,Buzz 支持使用其他人工智能将内容翻译成任意语言。
+
+若要使用翻译功能,你需要配置 OpenAI API 密钥和翻译设置。在“偏好设置”中设置 OpenAI API 密钥。Buzz 也支持本地运行的、兼容 OpenAI API 的自定义翻译人工智能。有关本地运行人工智能的更多信息,请参阅 [ollama](https://ollama.com/blog/openai-compatibility) 或 [LM Studio](https://lmstudio.ai/)。有关可用自定义 API 的信息,请查看这个 [讨论线程](https://github.com/chidiwilliams/buzz/discussions/827)。
+
+若要为实时录制配置翻译功能,可在实时录制设置的“高级设置”对话框中启用该功能。输入要使用的人工智能模型,并提供给人工智能的翻译指令提示。对于已经完成语音识别的文件,也可以使用翻译功能。在转录查看器工具栏上点击“翻译”按钮即可。
+
+为了让人工智能知道如何进行翻译,请在“给人工智能的指令”部分输入翻译说明。在说明中,你应该明确指出要将文本翻译成何种语言。此外,由于人工智能往往会添加一些注释或备注,你可能需要额外添加指令禁止其这么做。以下是一个将英语字幕翻译成西班牙语的指令示例:
+
+> 你是一位专业翻译人员,擅长将英语翻译成西班牙语。你只需将发给你的每一句话翻译成西班牙语,不要添加任何注释或备注。
+
+如果你在“偏好设置”中启用了“启用实时录制转录导出”功能,实时文本转录内容在生成和翻译后将被导出到一个文本文件中。这个文件可用于将实时转录内容与其他应用程序(如 OBS Studio)进行进一步集成。
+
+使用 ChatGPT `gpt - 4o` 模型对一小时长的音频进行翻译,大致费用约为 0.50 美元。
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/4_edit_and_resize.md b/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/4_edit_and_resize.md
new file mode 100644
index 00000000..18ebb5ff
--- /dev/null
+++ b/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/4_edit_and_resize.md
@@ -0,0 +1,9 @@
+---
+title: 编辑与调整
+---
+
+当某个音频或视频文件完成转录后,你可以对其进行编辑,并将其导出为不同的字幕格式或纯文本。在转录列表中双击转录内容,即可查看用于编辑和导出的其他选项。
+
+转录视图界面提供了调整转录内容的选项。点击“调整”按钮,可查看可用的选项。对于在 **启用单词级时间戳** 设置下生成的转录内容,可以通过指定不同选项(如字幕的最大长度以及是否应在标点处拆分字幕)将其合并成字幕。而对于在 **未启用单词级时间戳** 设置下生成的转录内容,仅能通过指定所需的字幕最大长度来重新组合。
+
+如果系统中仍存在音频文件,单词级时间戳合并操作还会分析音频中的静音部分,以提高字幕的准确性。从带有单词级时间戳的转录内容生成字幕的功能自 1.3.0 版本起可用。
diff --git a/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/_category_.yml b/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/_category_.yml
new file mode 100644
index 00000000..19fa6741
--- /dev/null
+++ b/docs/i18n/zh/docusaurus-plugin-content-docs/current/usage/_category_.yml
@@ -0,0 +1,2 @@
+label: 使用方法
+position: 3
diff --git a/docs/static/img/latest-development-build.jpeg b/docs/static/img/latest-development-build.jpeg
new file mode 100644
index 00000000..4ba2551c
Binary files /dev/null and b/docs/static/img/latest-development-build.jpeg differ
diff --git a/flatpak/run-buzz.sh b/flatpak/run-buzz.sh
new file mode 100644
index 00000000..f32217ec
--- /dev/null
+++ b/flatpak/run-buzz.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+echo "Running buzz..."
+echo "Note: ffmpeg errors are safe to ignore"
+
+python -m buzz
\ No newline at end of file
diff --git a/hatch_build.py b/hatch_build.py
new file mode 100644
index 00000000..0aeeab4c
--- /dev/null
+++ b/hatch_build.py
@@ -0,0 +1,227 @@
+"""Custom build hook for hatchling to build whisper.cpp binaries."""
+import glob
+import subprocess
+import sys
+from pathlib import Path
+
+from hatchling.builders.hooks.plugin.interface import BuildHookInterface
+
+
+class CustomBuildHook(BuildHookInterface):
+ """Build hook to compile whisper.cpp before building the package."""
+
+ def initialize(self, version, build_data):
+ """Run make buzz/whisper_cpp before building."""
+ print("Running 'make buzz/whisper_cpp' to build whisper.cpp binaries...")
+
+ # Mark wheel as platform-specific since we're including compiled binaries
+ # But set tag to py3-none since binaries are standalone (no Python C extensions)
+ if version == "standard": # Only for wheel builds
+ import platform
+
+ build_data["pure_python"] = False
+
+ # Determine the platform tag based on current OS and architecture
+ system = platform.system().lower()
+ machine = platform.machine().lower()
+
+ if system == "linux":
+ if machine in ("x86_64", "amd64"):
+ tag = "py3-none-manylinux_2_34_x86_64"
+ else:
+ raise ValueError(f"Unsupported Linux architecture: {machine}. Only x86_64 is supported.")
+ elif system == "darwin":
+ if machine in ("x86_64", "amd64"):
+ tag = "py3-none-macosx_10_9_x86_64"
+ elif machine in ("arm64", "aarch64"):
+ tag = "py3-none-macosx_11_0_arm64"
+ else:
+ raise ValueError(f"Unsupported macOS architecture: {machine}")
+ elif system == "windows":
+ if machine in ("x86_64", "amd64"):
+ tag = "py3-none-win_amd64"
+ else:
+ raise ValueError(f"Unsupported Windows architecture: {machine}. Only x86_64 is supported.")
+ else:
+ raise ValueError(f"Unsupported operating system: {system}")
+
+ if tag:
+ build_data["tag"] = tag
+ print(f"Building wheel with tag: {tag}")
+
+ # Get the project root directory
+ project_root = Path(self.root)
+
+ try:
+ # Run the make command
+ result = subprocess.run(
+ ["make", "buzz/whisper_cpp"],
+ cwd=project_root,
+ check=True,
+ capture_output=True,
+ text=True
+ )
+ print(result.stdout)
+ if result.stderr:
+ print(result.stderr, file=sys.stderr)
+ print("Successfully built whisper.cpp binaries")
+
+ # Run the make command for translation files
+ result = subprocess.run(
+ ["make", "translation_mo"],
+ cwd=project_root,
+ check=True,
+ capture_output=True,
+ text=True
+ )
+ print(result.stdout)
+ if result.stderr:
+ print(result.stderr, file=sys.stderr)
+ print("Successfully compiled translation files")
+
+ # Build ctc_forced_aligner C++ extension in-place
+ print("Building ctc_forced_aligner C++ extension...")
+ ctc_aligner_dir = project_root / "ctc_forced_aligner"
+
+ # Apply local patches before building.
+ # Uses --check first to avoid touching the working tree unnecessarily,
+ # which is safer in a detached-HEAD submodule.
+ patches_dir = project_root / "patches"
+ for patch_file in sorted(patches_dir.glob("ctc_forced_aligner_*.patch")):
+ # Dry-run forward: succeeds only if patch is NOT yet applied.
+ check_forward = subprocess.run(
+ ["git", "apply", "--check", "--ignore-whitespace", str(patch_file)],
+ cwd=ctc_aligner_dir,
+ capture_output=True,
+ text=True,
+ )
+ if check_forward.returncode == 0:
+ # Patch can be applied — do it for real.
+ subprocess.run(
+ ["git", "apply", "--ignore-whitespace", str(patch_file)],
+ cwd=ctc_aligner_dir,
+ check=True,
+ capture_output=True,
+ text=True,
+ )
+ print(f"Applied patch: {patch_file.name}")
+ else:
+ # Dry-run failed — either already applied or genuinely broken.
+ check_reverse = subprocess.run(
+ ["git", "apply", "--check", "--reverse", "--ignore-whitespace", str(patch_file)],
+ cwd=ctc_aligner_dir,
+ capture_output=True,
+ text=True,
+ )
+ if check_reverse.returncode == 0:
+ print(f"Patch already applied (skipping): {patch_file.name}")
+ else:
+ print(f"WARNING: could not apply patch {patch_file.name}: {check_forward.stderr}", file=sys.stderr)
+
+ result = subprocess.run(
+ [sys.executable, "setup.py", "build_ext", "--inplace"],
+ cwd=ctc_aligner_dir,
+ check=True,
+ capture_output=True,
+ text=True
+ )
+ print(result.stdout)
+ if result.stderr:
+ print(result.stderr, file=sys.stderr)
+ print("Successfully built ctc_forced_aligner C++ extension")
+
+ # Force include all files in buzz/whisper_cpp directory
+ whisper_cpp_dir = project_root / "buzz" / "whisper_cpp"
+ if whisper_cpp_dir.exists():
+ # Get all files in the whisper_cpp directory
+ whisper_files = glob.glob(str(whisper_cpp_dir / "**" / "*"), recursive=True)
+
+ # Filter only files (not directories)
+ whisper_files = [f for f in whisper_files if Path(f).is_file()]
+
+ # Add them to force_include
+ if 'force_include' not in build_data:
+ build_data['force_include'] = {}
+
+ for file_path in whisper_files:
+ # Convert to relative path from project root
+ rel_path = Path(file_path).relative_to(project_root)
+ build_data['force_include'][str(rel_path)] = str(rel_path)
+
+ print(f"Force including {len(whisper_files)} files from buzz/whisper_cpp/")
+ else:
+ print(f"Warning: {whisper_cpp_dir} does not exist after build", file=sys.stderr)
+
+ # Force include demucs package at top level (demucs_repo/demucs -> demucs/)
+ demucs_pkg_dir = project_root / "demucs_repo" / "demucs"
+ if demucs_pkg_dir.exists():
+ # Get all files in the demucs package directory
+ demucs_files = glob.glob(str(demucs_pkg_dir / "**" / "*"), recursive=True)
+
+ # Filter only files (not directories)
+ demucs_files = [f for f in demucs_files if Path(f).is_file()]
+
+ # Add them to force_include, mapping to top-level demucs/
+ if 'force_include' not in build_data:
+ build_data['force_include'] = {}
+
+ for file_path in demucs_files:
+ # Convert to relative path from demucs package dir
+ rel_from_pkg = Path(file_path).relative_to(demucs_pkg_dir)
+ # Target path is demucs/
+ target_path = Path("demucs") / rel_from_pkg
+ build_data['force_include'][str(file_path)] = str(target_path)
+
+ print(f"Force including {len(demucs_files)} files from demucs_repo/demucs/ -> demucs/")
+ else:
+ print(f"Warning: {demucs_pkg_dir} does not exist", file=sys.stderr)
+
+ # Force include all .mo files from buzz/locale directory
+ locale_dir = project_root / "buzz" / "locale"
+ if locale_dir.exists():
+ # Get all .mo files in the locale directory
+ locale_files = glob.glob(str(locale_dir / "**" / "*.mo"), recursive=True)
+
+ # Add them to force_include
+ if 'force_include' not in build_data:
+ build_data['force_include'] = {}
+
+ for file_path in locale_files:
+ # Convert to relative path from project root
+ rel_path = Path(file_path).relative_to(project_root)
+ build_data['force_include'][str(rel_path)] = str(rel_path)
+
+ print(f"Force including {len(locale_files)} .mo files from buzz/locale/")
+ else:
+ print(f"Warning: {locale_dir} does not exist", file=sys.stderr)
+
+ # Force include compiled extensions from ctc_forced_aligner
+ ctc_aligner_pkg = project_root / "ctc_forced_aligner" / "ctc_forced_aligner"
+ if ctc_aligner_pkg.exists():
+ # Get all compiled extension files (.so, .pyd, .dll)
+ extension_patterns = ["*.so", "*.pyd", "*.dll"]
+ extension_files = []
+ for pattern in extension_patterns:
+ extension_files.extend(glob.glob(str(ctc_aligner_pkg / pattern)))
+
+ # Add them to force_include
+ if 'force_include' not in build_data:
+ build_data['force_include'] = {}
+
+ for file_path in extension_files:
+ # Convert to relative path from project root
+ rel_path = Path(file_path).relative_to(project_root)
+ build_data['force_include'][str(rel_path)] = str(rel_path)
+
+ print(f"Force including {len(extension_files)} compiled extension(s) from ctc_forced_aligner/")
+ else:
+ print(f"Warning: {ctc_aligner_pkg} does not exist", file=sys.stderr)
+
+ except subprocess.CalledProcessError as e:
+ print(f"Error building whisper.cpp: {e}", file=sys.stderr)
+ print(f"stdout: {e.stdout}", file=sys.stderr)
+ print(f"stderr: {e.stderr}", file=sys.stderr)
+ sys.exit(1)
+ except FileNotFoundError:
+ print("Error: 'make' command not found. Please ensure make is installed.", file=sys.stderr)
+ sys.exit(1)
diff --git a/installer.iss b/installer.iss
index ff53e09a..85b690d0 100644
--- a/installer.iss
+++ b/installer.iss
@@ -8,13 +8,15 @@
#define OutputDir "dist"
#define AppRegKey "Software\Buzz"
+#define VersionFile FileRead(FileOpen("buzz\__version__.py"))
+#define AppVersion Copy(VersionFile, Pos('VERSION = "', VersionFile) + 11, 5)
+
[Setup]
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{574290A2-EF7C-4845-85F3-BFF2F011A580}
AppName={#AppName}
AppVersion={#AppVersion}
-;AppVerName={#AppName} {#AppVersion}
DefaultDirName={autopf}\{#AppName}
DisableProgramGroupPage=yes
; Uncomment the following line to run in non administrative install mode (install for current user only.)
@@ -23,6 +25,7 @@ PrivilegesRequiredOverridesAllowed=dialog
OutputDir={#OutputDir}
OutputBaseFilename={#AppName}-{#AppVersion}-windows
SetupIconFile={#AppIconPath}
+DiskSpanning=yes
Compression=lzma
SolidCompression=yes
WizardStyle=modern
@@ -48,13 +51,38 @@ Filename: "{app}\{#AppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(
Root: HKCU; Subkey: "{#AppRegKey}"
[Code]
+procedure DeleteFileOrFolder(FilePath: string);
+begin
+ if FileExists(FilePath) then
+ begin
+ DeleteFile(FilePath);
+ end
+ else if DirExists(FilePath) then
+ begin
+ DelTree(FilePath, True, True, True);
+ end;
+end;
+
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
begin
if CurUninstallStep = usPostUninstall then
begin
if RegKeyExists(HKEY_CURRENT_USER, '{#AppRegKey}') then
- if MsgBox('Do you want to delete Buzz settings?', mbConfirmation, MB_YESNO) = IDYES
+ if MsgBox('Do you want to delete Buzz settings and saved files?', mbConfirmation, MB_YESNO) = IDYES
then
+ begin
RegDeleteKeyIncludingSubkeys(HKEY_CURRENT_USER, '{#AppRegKey}');
+ // Remove model and cache directories
+ DeleteFileOrFolder(ExpandConstant('{localappdata}\Buzz'));
+ end;
+ end;
+end;
+
+procedure CurStepChanged(CurStep: TSetupStep);
+begin
+ if CurStep = ssInstall then
+ begin
+ DeleteFileOrFolder(ExpandConstant('{app}\Buzz.exe'));
+ DeleteFileOrFolder(ExpandConstant('{app}\_internal'));
end;
end;
\ No newline at end of file
diff --git a/patches/ctc_forced_aligner_windows_mutex.patch b/patches/ctc_forced_aligner_windows_mutex.patch
new file mode 100644
index 00000000..2940c9ab
--- /dev/null
+++ b/patches/ctc_forced_aligner_windows_mutex.patch
@@ -0,0 +1,16 @@
+diff --git a/setup.py b/setup.py
+index de84a25..386f662 100644
+--- a/setup.py
++++ b/setup.py
+@@ -6,7 +6,10 @@ ext_modules = [
+ Pybind11Extension(
+ "ctc_forced_aligner.ctc_forced_aligner",
+ ["ctc_forced_aligner/forced_align_impl.cpp"],
+- extra_compile_args=["/O2"] if sys.platform == "win32" else ["-O3"],
++ # /D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR prevents MSVC runtime mutex
++ # static-initializer crash on newer GitHub Actions Windows runners.
++ # See: https://github.com/actions/runner-images/issues/10004
++ extra_compile_args=["/O2", "/D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR"] if sys.platform == "win32" else ["-O3"],
+ )
+ ]
+
diff --git a/poetry.lock b/poetry.lock
deleted file mode 100644
index 10cabf52..00000000
--- a/poetry.lock
+++ /dev/null
@@ -1,3590 +0,0 @@
-# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand.
-
-[[package]]
-name = "accelerate"
-version = "1.0.1"
-description = "Accelerate"
-optional = false
-python-versions = ">=3.8.0"
-files = [
- {file = "accelerate-1.0.1-py3-none-any.whl", hash = "sha256:c6aa0c7b8a797cb150471e90e3ca36ac41f5d4b40512cdd6f058b8bf25589467"},
- {file = "accelerate-1.0.1.tar.gz", hash = "sha256:e8f95fc2db14915dc0a9182edfcf3068e5ddb2fa310b583717ad44e5c442399c"},
-]
-
-[package.dependencies]
-huggingface-hub = ">=0.21.0"
-numpy = ">=1.17,<3.0.0"
-packaging = ">=20.0"
-psutil = "*"
-pyyaml = "*"
-safetensors = ">=0.4.3"
-torch = ">=1.10.0"
-
-[package.extras]
-deepspeed = ["deepspeed"]
-dev = ["bitsandbytes", "black (>=23.1,<24.0)", "datasets", "diffusers", "evaluate", "hf-doc-builder (>=0.3.0)", "parameterized", "pytest (>=7.2.0,<=8.0.0)", "pytest-subtests", "pytest-xdist", "rich", "ruff (>=0.6.4,<0.7.0)", "scikit-learn", "scipy", "timm", "torchdata (>=0.8.0)", "torchpippy (>=0.2.0)", "tqdm", "transformers"]
-quality = ["black (>=23.1,<24.0)", "hf-doc-builder (>=0.3.0)", "ruff (>=0.6.4,<0.7.0)"]
-rich = ["rich"]
-sagemaker = ["sagemaker"]
-test-dev = ["bitsandbytes", "datasets", "diffusers", "evaluate", "scikit-learn", "scipy", "timm", "torchdata (>=0.8.0)", "torchpippy (>=0.2.0)", "tqdm", "transformers"]
-test-prod = ["parameterized", "pytest (>=7.2.0,<=8.0.0)", "pytest-subtests", "pytest-xdist"]
-test-trackers = ["comet-ml", "dvclive", "tensorboard", "wandb"]
-testing = ["bitsandbytes", "datasets", "diffusers", "evaluate", "parameterized", "pytest (>=7.2.0,<=8.0.0)", "pytest-subtests", "pytest-xdist", "scikit-learn", "scipy", "timm", "torchdata (>=0.8.0)", "torchpippy (>=0.2.0)", "tqdm", "transformers"]
-
-[[package]]
-name = "altgraph"
-version = "0.17.4"
-description = "Python graph (network) package"
-optional = false
-python-versions = "*"
-files = [
- {file = "altgraph-0.17.4-py2.py3-none-any.whl", hash = "sha256:642743b4750de17e655e6711601b077bc6598dbfa3ba5fa2b2a35ce12b508dff"},
- {file = "altgraph-0.17.4.tar.gz", hash = "sha256:1b5afbb98f6c4dcadb2e2ae6ab9fa994bbb8c1d75f4fa96d340f9437ae454406"},
-]
-
-[[package]]
-name = "annotated-types"
-version = "0.6.0"
-description = "Reusable constraint types to use with typing.Annotated"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"},
- {file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"},
-]
-
-[[package]]
-name = "anyio"
-version = "4.3.0"
-description = "High level compatibility layer for multiple asynchronous event loop implementations"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "anyio-4.3.0-py3-none-any.whl", hash = "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8"},
- {file = "anyio-4.3.0.tar.gz", hash = "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6"},
-]
-
-[package.dependencies]
-exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""}
-idna = ">=2.8"
-sniffio = ">=1.1"
-typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""}
-
-[package.extras]
-doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"]
-test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"]
-trio = ["trio (>=0.23)"]
-
-[[package]]
-name = "astroid"
-version = "2.15.8"
-description = "An abstract syntax tree for Python with inference support."
-optional = false
-python-versions = ">=3.7.2"
-files = [
- {file = "astroid-2.15.8-py3-none-any.whl", hash = "sha256:1aa149fc5c6589e3d0ece885b4491acd80af4f087baafa3fb5203b113e68cd3c"},
- {file = "astroid-2.15.8.tar.gz", hash = "sha256:6c107453dffee9055899705de3c9ead36e74119cee151e5a9aaf7f0b0e020a6a"},
-]
-
-[package.dependencies]
-lazy-object-proxy = ">=1.4.0"
-typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""}
-wrapt = [
- {version = ">=1.11,<2", markers = "python_version < \"3.11\""},
- {version = ">=1.14,<2", markers = "python_version >= \"3.11\""},
-]
-
-[[package]]
-name = "autopep8"
-version = "1.7.0"
-description = "A tool that automatically formats Python code to conform to the PEP 8 style guide"
-optional = false
-python-versions = "*"
-files = [
- {file = "autopep8-1.7.0-py2.py3-none-any.whl", hash = "sha256:6f09e90a2be784317e84dc1add17ebfc7abe3924239957a37e5040e27d812087"},
- {file = "autopep8-1.7.0.tar.gz", hash = "sha256:ca9b1a83e53a7fad65d731dc7a2a2d50aa48f43850407c59f6a1a306c4201142"},
-]
-
-[package.dependencies]
-pycodestyle = ">=2.9.1"
-toml = "*"
-
-[[package]]
-name = "av"
-version = "11.0.0"
-description = "Pythonic bindings for FFmpeg's libraries."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "av-11.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a01f13b37eb6d181e03bbbbda29093fe2d68f10755795188220acdc89560ec27"},
- {file = "av-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b2236faee1b5d71dff3cdef81ef6eec22cc8b71dbfb45eb037e6437fe80f24e7"},
- {file = "av-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40543a08e5c84aecd2bc84da5d43548743201897f0ba21bf5ae3a4dcddefca2b"},
- {file = "av-11.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2907376884d956376aaf3bc1905fa4e0dcb9ba4e0d183e519392a19d89317d1b"},
- {file = "av-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8d5581dcdc81cd601e3ce036809f14da82c46ff187bcefe981ec819390e0ab0"},
- {file = "av-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:150490f2a62cfa470f3cb60f3a0060ff93afd807e2b7b3b0eeeb5a992eb8d67b"},
- {file = "av-11.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d9bac0de62f09e2cb4e2132b5a46a89bc31c898189aa285b484c17351d991afe"},
- {file = "av-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2122ff8bdace4ce50207920f37de472517921e2ca1f0503464f748fdb8e20506"},
- {file = "av-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:527d840697fee6ad4cf47eba987eaf30cd76bd96b2d20eaa907e166b9b8065c8"},
- {file = "av-11.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abeaedddfca9101886eb6fc47318c5f5ece8480d330d73aacf6917d7421981a2"},
- {file = "av-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13790fbb889b955baf885fe3761e923e85537ef414173465ec293177cedb7b99"},
- {file = "av-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:fc27e27f52480287f44226ad4ae3eb53346bf027959d0f00a9154530bd98b371"},
- {file = "av-11.0.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:892583e2c6b8c2500e5d24310f499caefcdaa2e48c8f7169ad41041aaaf4da11"},
- {file = "av-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6943679d70a9f4de974049e7ae2cf0b20afe0d7ddab650526c02a6cf9adcd08f"},
- {file = "av-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e6d73b038ccf1df5c16bc643eee5c694fb7732e09375e2f4903c1f4ce90dfb72"},
- {file = "av-11.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c83422db3333e97b9680700df5185139352fc3a568b14179da3bdcbeb2f0e91b"},
- {file = "av-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8413900f6a3639e0088c018a3a516a1656d4d16799e7aa759a16ddf3bd268e2b"},
- {file = "av-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:908e49ee336223801d8f2f7dca5a1deb64e9d8256138b8e7a79013b682a6ebb5"},
- {file = "av-11.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:82411ae4a562da07b76028d2f349fb0e6a86aa78ad2b18d2d7bf5b06b17fba14"},
- {file = "av-11.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:621104bd63e38fa4eca554da3722b1aac329619de39152f27eec8999acc72342"},
- {file = "av-11.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:442878990c094455a16c10127edcc54bc4e78d355e6a13ad2a27608b0ecda38f"},
- {file = "av-11.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:658199c92987dc72511f5ee8ade62faef6234b7a04c8b5788de99e366be5e073"},
- {file = "av-11.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad4b381665c49267b46f87297573898b85e5c41384750fee2e70267fbc4ba318"},
- {file = "av-11.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:60de14f71293e36ca4e297cc8a8460f0cf74f38a201694f3c6fc7f40301582f2"},
- {file = "av-11.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a90f04af96374dab94028a7471597bdfcf03083338b9be2eb8ca4805a8ec7ab5"},
- {file = "av-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8821ab2d23e4cb5c8abea6b08d2b1bfceca6af2d88fab1d1dc1b3ec7b34933c7"},
- {file = "av-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a92342ed307eeaf9509a6b0f3bafd4337c4880c851b50acc18df48c625b63b6"},
- {file = "av-11.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bbe3502975bc844f5d432c1f24d331bf6ef3e05532ebf06f7ed08b60719b8ea5"},
- {file = "av-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c278b3a4fd111b4c9190abe6b1a5ca358d5f91e851d470b62577b957e0187b09"},
- {file = "av-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:478aa1d54fbc3058ea65ff41086b6adbe1326b456a027d2f3b59dbe60b4ac2ca"},
- {file = "av-11.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e8df10bb2d56a981d02a8a0b41491912b76dad06305d174a2575ef55ad451100"},
- {file = "av-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b30c51e597785a89241bd61865faff2dbd3327856a8285a1e120dbf60e18348b"},
- {file = "av-11.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a8b8bd92edb096699b306e7b090ad096925ca3bdae6f89656f023fa2a2da627d"},
- {file = "av-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9383af733abfc44f6fc29307a6c922fbf671ee343dc97b78b74eac6a2346a46d"},
- {file = "av-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a9df4a60579198b560f641cdfe4c2139948a70193ddc096b275f2cf6d94e3e04"},
- {file = "av-11.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:8ae5f7ae0a7093fb813686d4aa4c554531f80a28480427f5c155da51b747eff0"},
- {file = "av-11.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50fb7d606f8236891d773c701d5650b93af8dbf78eeaac36fc7e1f7f64a9d664"},
- {file = "av-11.0.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:543e0f9bf6ff02dedbe66d906fbc89c8907c80a8ea7413fc3fed68ce4a6e9b44"},
- {file = "av-11.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:daa279c884457ab194ce78bdd89c0aa391af733da95fb3258d4c6eb8c258299a"},
- {file = "av-11.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1aacc21f4cf96447117a61edfb776afb73186750a5e08a21484ddfc3599aefb5"},
- {file = "av-11.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2568b38eef777b916a5d02e42b8f67f92e12023531239ddd32e1ca4f3cdf8c5b"},
- {file = "av-11.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:747c6d347e27c59cc2e78c9c505d23cd88eceff0cc9386be73693ae9009a577c"},
- {file = "av-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4bbd8f4941b9d3450eff40003b9b9d904667aec7ab085fa31f0f9bca32d755e0"},
- {file = "av-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:f39c1244ba0cf185b2722aeec116b8a98a2ee5728ce687cec0bda60ee0360dfc"},
- {file = "av-11.0.0.tar.gz", hash = "sha256:48223f000a252070f8e700ff634bb7fb3aa1b7bc7e450373029fbdd6f369ac31"},
-]
-
-[[package]]
-name = "brotli"
-version = "1.1.0"
-description = "Python bindings for the Brotli compression library"
-optional = false
-python-versions = "*"
-files = [
- {file = "Brotli-1.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e1140c64812cb9b06c922e77f1c26a75ec5e3f0fb2bf92cc8c58720dec276752"},
- {file = "Brotli-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c8fd5270e906eef71d4a8d19b7c6a43760c6abcfcc10c9101d14eb2357418de9"},
- {file = "Brotli-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ae56aca0402a0f9a3431cddda62ad71666ca9d4dc3a10a142b9dce2e3c0cda3"},
- {file = "Brotli-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:43ce1b9935bfa1ede40028054d7f48b5469cd02733a365eec8a329ffd342915d"},
- {file = "Brotli-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:7c4855522edb2e6ae7fdb58e07c3ba9111e7621a8956f481c68d5d979c93032e"},
- {file = "Brotli-1.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:38025d9f30cf4634f8309c6874ef871b841eb3c347e90b0851f63d1ded5212da"},
- {file = "Brotli-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e6a904cb26bfefc2f0a6f240bdf5233be78cd2488900a2f846f3c3ac8489ab80"},
- {file = "Brotli-1.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a37b8f0391212d29b3a91a799c8e4a2855e0576911cdfb2515487e30e322253d"},
- {file = "Brotli-1.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e84799f09591700a4154154cab9787452925578841a94321d5ee8fb9a9a328f0"},
- {file = "Brotli-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f66b5337fa213f1da0d9000bc8dc0cb5b896b726eefd9c6046f699b169c41b9e"},
- {file = "Brotli-1.1.0-cp310-cp310-win32.whl", hash = "sha256:be36e3d172dc816333f33520154d708a2657ea63762ec16b62ece02ab5e4daf2"},
- {file = "Brotli-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:0c6244521dda65ea562d5a69b9a26120769b7a9fb3db2fe9545935ed6735b128"},
- {file = "Brotli-1.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a3daabb76a78f829cafc365531c972016e4aa8d5b4bf60660ad8ecee19df7ccc"},
- {file = "Brotli-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c8146669223164fc87a7e3de9f81e9423c67a79d6b3447994dfb9c95da16e2d6"},
- {file = "Brotli-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30924eb4c57903d5a7526b08ef4a584acc22ab1ffa085faceb521521d2de32dd"},
- {file = "Brotli-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ceb64bbc6eac5a140ca649003756940f8d6a7c444a68af170b3187623b43bebf"},
- {file = "Brotli-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a469274ad18dc0e4d316eefa616d1d0c2ff9da369af19fa6f3daa4f09671fd61"},
- {file = "Brotli-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:524f35912131cc2cabb00edfd8d573b07f2d9f21fa824bd3fb19725a9cf06327"},
- {file = "Brotli-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:5b3cc074004d968722f51e550b41a27be656ec48f8afaeeb45ebf65b561481dd"},
- {file = "Brotli-1.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:19c116e796420b0cee3da1ccec3b764ed2952ccfcc298b55a10e5610ad7885f9"},
- {file = "Brotli-1.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:510b5b1bfbe20e1a7b3baf5fed9e9451873559a976c1a78eebaa3b86c57b4265"},
- {file = "Brotli-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a1fd8a29719ccce974d523580987b7f8229aeace506952fa9ce1d53a033873c8"},
- {file = "Brotli-1.1.0-cp311-cp311-win32.whl", hash = "sha256:39da8adedf6942d76dc3e46653e52df937a3c4d6d18fdc94a7c29d263b1f5b50"},
- {file = "Brotli-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:aac0411d20e345dc0920bdec5548e438e999ff68d77564d5e9463a7ca9d3e7b1"},
- {file = "Brotli-1.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:316cc9b17edf613ac76b1f1f305d2a748f1b976b033b049a6ecdfd5612c70409"},
- {file = "Brotli-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:caf9ee9a5775f3111642d33b86237b05808dafcd6268faa492250e9b78046eb2"},
- {file = "Brotli-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70051525001750221daa10907c77830bc889cb6d865cc0b813d9db7fefc21451"},
- {file = "Brotli-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7f4bf76817c14aa98cc6697ac02f3972cb8c3da93e9ef16b9c66573a68014f91"},
- {file = "Brotli-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0c5516f0aed654134a2fc936325cc2e642f8a0e096d075209672eb321cff408"},
- {file = "Brotli-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6c3020404e0b5eefd7c9485ccf8393cfb75ec38ce75586e046573c9dc29967a0"},
- {file = "Brotli-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4ed11165dd45ce798d99a136808a794a748d5dc38511303239d4e2363c0695dc"},
- {file = "Brotli-1.1.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:4093c631e96fdd49e0377a9c167bfd75b6d0bad2ace734c6eb20b348bc3ea180"},
- {file = "Brotli-1.1.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7e4c4629ddad63006efa0ef968c8e4751c5868ff0b1c5c40f76524e894c50248"},
- {file = "Brotli-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:861bf317735688269936f755fa136a99d1ed526883859f86e41a5d43c61d8966"},
- {file = "Brotli-1.1.0-cp312-cp312-win32.whl", hash = "sha256:5f4d5ea15c9382135076d2fb28dde923352fe02951e66935a9efaac8f10e81b0"},
- {file = "Brotli-1.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:906bc3a79de8c4ae5b86d3d75a8b77e44404b0f4261714306e3ad248d8ab0951"},
- {file = "Brotli-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:a090ca607cbb6a34b0391776f0cb48062081f5f60ddcce5d11838e67a01928d1"},
- {file = "Brotli-1.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2de9d02f5bda03d27ede52e8cfe7b865b066fa49258cbab568720aa5be80a47d"},
- {file = "Brotli-1.1.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2333e30a5e00fe0fe55903c8832e08ee9c3b1382aacf4db26664a16528d51b4b"},
- {file = "Brotli-1.1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4d4a848d1837973bf0f4b5e54e3bec977d99be36a7895c61abb659301b02c112"},
- {file = "Brotli-1.1.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:fdc3ff3bfccdc6b9cc7c342c03aa2400683f0cb891d46e94b64a197910dc4064"},
- {file = "Brotli-1.1.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:5eeb539606f18a0b232d4ba45adccde4125592f3f636a6182b4a8a436548b914"},
- {file = "Brotli-1.1.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:fd5f17ff8f14003595ab414e45fce13d073e0762394f957182e69035c9f3d7c2"},
- {file = "Brotli-1.1.0-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:069a121ac97412d1fe506da790b3e69f52254b9df4eb665cd42460c837193354"},
- {file = "Brotli-1.1.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:e93dfc1a1165e385cc8239fab7c036fb2cd8093728cbd85097b284d7b99249a2"},
- {file = "Brotli-1.1.0-cp36-cp36m-win32.whl", hash = "sha256:a599669fd7c47233438a56936988a2478685e74854088ef5293802123b5b2460"},
- {file = "Brotli-1.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:d143fd47fad1db3d7c27a1b1d66162e855b5d50a89666af46e1679c496e8e579"},
- {file = "Brotli-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:11d00ed0a83fa22d29bc6b64ef636c4552ebafcef57154b4ddd132f5638fbd1c"},
- {file = "Brotli-1.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f733d788519c7e3e71f0855c96618720f5d3d60c3cb829d8bbb722dddce37985"},
- {file = "Brotli-1.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:929811df5462e182b13920da56c6e0284af407d1de637d8e536c5cd00a7daf60"},
- {file = "Brotli-1.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0b63b949ff929fbc2d6d3ce0e924c9b93c9785d877a21a1b678877ffbbc4423a"},
- {file = "Brotli-1.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:d192f0f30804e55db0d0e0a35d83a9fead0e9a359a9ed0285dbacea60cc10a84"},
- {file = "Brotli-1.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:f296c40e23065d0d6650c4aefe7470d2a25fffda489bcc3eb66083f3ac9f6643"},
- {file = "Brotli-1.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:919e32f147ae93a09fe064d77d5ebf4e35502a8df75c29fb05788528e330fe74"},
- {file = "Brotli-1.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:23032ae55523cc7bccb4f6a0bf368cd25ad9bcdcc1990b64a647e7bbcce9cb5b"},
- {file = "Brotli-1.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:224e57f6eac61cc449f498cc5f0e1725ba2071a3d4f48d5d9dffba42db196438"},
- {file = "Brotli-1.1.0-cp37-cp37m-win32.whl", hash = "sha256:587ca6d3cef6e4e868102672d3bd9dc9698c309ba56d41c2b9c85bbb903cdb95"},
- {file = "Brotli-1.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:2954c1c23f81c2eaf0b0717d9380bd348578a94161a65b3a2afc62c86467dd68"},
- {file = "Brotli-1.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:efa8b278894b14d6da122a72fefcebc28445f2d3f880ac59d46c90f4c13be9a3"},
- {file = "Brotli-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:03d20af184290887bdea3f0f78c4f737d126c74dc2f3ccadf07e54ceca3bf208"},
- {file = "Brotli-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6172447e1b368dcbc458925e5ddaf9113477b0ed542df258d84fa28fc45ceea7"},
- {file = "Brotli-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a743e5a28af5f70f9c080380a5f908d4d21d40e8f0e0c8901604d15cfa9ba751"},
- {file = "Brotli-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0541e747cce78e24ea12d69176f6a7ddb690e62c425e01d31cc065e69ce55b48"},
- {file = "Brotli-1.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:cdbc1fc1bc0bff1cef838eafe581b55bfbffaed4ed0318b724d0b71d4d377619"},
- {file = "Brotli-1.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:890b5a14ce214389b2cc36ce82f3093f96f4cc730c1cffdbefff77a7c71f2a97"},
- {file = "Brotli-1.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ab4fbee0b2d9098c74f3057b2bc055a8bd92ccf02f65944a241b4349229185a"},
- {file = "Brotli-1.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:141bd4d93984070e097521ed07e2575b46f817d08f9fa42b16b9b5f27b5ac088"},
- {file = "Brotli-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fce1473f3ccc4187f75b4690cfc922628aed4d3dd013d047f95a9b3919a86596"},
- {file = "Brotli-1.1.0-cp38-cp38-win32.whl", hash = "sha256:db85ecf4e609a48f4b29055f1e144231b90edc90af7481aa731ba2d059226b1b"},
- {file = "Brotli-1.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3d7954194c36e304e1523f55d7042c59dc53ec20dd4e9ea9d151f1b62b4415c0"},
- {file = "Brotli-1.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5fb2ce4b8045c78ebbc7b8f3c15062e435d47e7393cc57c25115cfd49883747a"},
- {file = "Brotli-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7905193081db9bfa73b1219140b3d315831cbff0d8941f22da695832f0dd188f"},
- {file = "Brotli-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a77def80806c421b4b0af06f45d65a136e7ac0bdca3c09d9e2ea4e515367c7e9"},
- {file = "Brotli-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8dadd1314583ec0bf2d1379f7008ad627cd6336625d6679cf2f8e67081b83acf"},
- {file = "Brotli-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:901032ff242d479a0efa956d853d16875d42157f98951c0230f69e69f9c09bac"},
- {file = "Brotli-1.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:22fc2a8549ffe699bfba2256ab2ed0421a7b8fadff114a3d201794e45a9ff578"},
- {file = "Brotli-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ae15b066e5ad21366600ebec29a7ccbc86812ed267e4b28e860b8ca16a2bc474"},
- {file = "Brotli-1.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:949f3b7c29912693cee0afcf09acd6ebc04c57af949d9bf77d6101ebb61e388c"},
- {file = "Brotli-1.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:89f4988c7203739d48c6f806f1e87a1d96e0806d44f0fba61dba81392c9e474d"},
- {file = "Brotli-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:de6551e370ef19f8de1807d0a9aa2cdfdce2e85ce88b122fe9f6b2b076837e59"},
- {file = "Brotli-1.1.0-cp39-cp39-win32.whl", hash = "sha256:f0d8a7a6b5983c2496e364b969f0e526647a06b075d034f3297dc66f3b360c64"},
- {file = "Brotli-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:cdad5b9014d83ca68c25d2e9444e28e967ef16e80f6b436918c700c117a85467"},
- {file = "Brotli-1.1.0.tar.gz", hash = "sha256:81de08ac11bcb85841e440c13611c00b67d3bf82698314928d0b676362546724"},
-]
-
-[[package]]
-name = "brotlicffi"
-version = "1.1.0.0"
-description = "Python CFFI bindings to the Brotli library"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "brotlicffi-1.1.0.0-cp37-abi3-macosx_10_9_x86_64.whl", hash = "sha256:9b7ae6bd1a3f0df532b6d67ff674099a96d22bc0948955cb338488c31bfb8851"},
- {file = "brotlicffi-1.1.0.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19ffc919fa4fc6ace69286e0a23b3789b4219058313cf9b45625016bf7ff996b"},
- {file = "brotlicffi-1.1.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9feb210d932ffe7798ee62e6145d3a757eb6233aa9a4e7db78dd3690d7755814"},
- {file = "brotlicffi-1.1.0.0-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84763dbdef5dd5c24b75597a77e1b30c66604725707565188ba54bab4f114820"},
- {file = "brotlicffi-1.1.0.0-cp37-abi3-win32.whl", hash = "sha256:1b12b50e07c3911e1efa3a8971543e7648100713d4e0971b13631cce22c587eb"},
- {file = "brotlicffi-1.1.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:994a4f0681bb6c6c3b0925530a1926b7a189d878e6e5e38fae8efa47c5d9c613"},
- {file = "brotlicffi-1.1.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2e4aeb0bd2540cb91b069dbdd54d458da8c4334ceaf2d25df2f4af576d6766ca"},
- {file = "brotlicffi-1.1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b7b0033b0d37bb33009fb2fef73310e432e76f688af76c156b3594389d81391"},
- {file = "brotlicffi-1.1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54a07bb2374a1eba8ebb52b6fafffa2afd3c4df85ddd38fcc0511f2bb387c2a8"},
- {file = "brotlicffi-1.1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7901a7dc4b88f1c1475de59ae9be59799db1007b7d059817948d8e4f12e24e35"},
- {file = "brotlicffi-1.1.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ce01c7316aebc7fce59da734286148b1d1b9455f89cf2c8a4dfce7d41db55c2d"},
- {file = "brotlicffi-1.1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:246f1d1a90279bb6069de3de8d75a8856e073b8ff0b09dcca18ccc14cec85979"},
- {file = "brotlicffi-1.1.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc4bc5d82bc56ebd8b514fb8350cfac4627d6b0743382e46d033976a5f80fab6"},
- {file = "brotlicffi-1.1.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37c26ecb14386a44b118ce36e546ce307f4810bc9598a6e6cb4f7fca725ae7e6"},
- {file = "brotlicffi-1.1.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca72968ae4eaf6470498d5c2887073f7efe3b1e7d7ec8be11a06a79cc810e990"},
- {file = "brotlicffi-1.1.0.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:add0de5b9ad9e9aa293c3aa4e9deb2b61e99ad6c1634e01d01d98c03e6a354cc"},
- {file = "brotlicffi-1.1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9b6068e0f3769992d6b622a1cd2e7835eae3cf8d9da123d7f51ca9c1e9c333e5"},
- {file = "brotlicffi-1.1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8557a8559509b61e65083f8782329188a250102372576093c88930c875a69838"},
- {file = "brotlicffi-1.1.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a7ae37e5d79c5bdfb5b4b99f2715a6035e6c5bf538c3746abc8e26694f92f33"},
- {file = "brotlicffi-1.1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:391151ec86bb1c683835980f4816272a87eaddc46bb91cbf44f62228b84d8cca"},
- {file = "brotlicffi-1.1.0.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:2f3711be9290f0453de8eed5275d93d286abe26b08ab4a35d7452caa1fef532f"},
- {file = "brotlicffi-1.1.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1a807d760763e398bbf2c6394ae9da5815901aa93ee0a37bca5efe78d4ee3171"},
- {file = "brotlicffi-1.1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa8ca0623b26c94fccc3a1fdd895be1743b838f3917300506d04aa3346fd2a14"},
- {file = "brotlicffi-1.1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3de0cf28a53a3238b252aca9fed1593e9d36c1d116748013339f0949bfc84112"},
- {file = "brotlicffi-1.1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6be5ec0e88a4925c91f3dea2bb0013b3a2accda6f77238f76a34a1ea532a1cb0"},
- {file = "brotlicffi-1.1.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:d9eb71bb1085d996244439154387266fd23d6ad37161f6f52f1cd41dd95a3808"},
- {file = "brotlicffi-1.1.0.0.tar.gz", hash = "sha256:b77827a689905143f87915310b93b273ab17888fd43ef350d4832c4a71083c13"},
-]
-
-[package.dependencies]
-cffi = ">=1.0.0"
-
-[[package]]
-name = "certifi"
-version = "2024.2.2"
-description = "Python package for providing Mozilla's CA Bundle."
-optional = false
-python-versions = ">=3.6"
-files = [
- {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"},
- {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"},
-]
-
-[[package]]
-name = "cffi"
-version = "1.16.0"
-description = "Foreign Function Interface for Python calling C code."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"},
- {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"},
- {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"},
- {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"},
- {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"},
- {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"},
- {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"},
- {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"},
- {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"},
- {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"},
- {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"},
- {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"},
- {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"},
- {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"},
- {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"},
- {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"},
- {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"},
- {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"},
- {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"},
- {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"},
- {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"},
- {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"},
- {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"},
- {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"},
- {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"},
- {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"},
- {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"},
- {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"},
- {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"},
- {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"},
- {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"},
- {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"},
- {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"},
- {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"},
- {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"},
- {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"},
- {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"},
- {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"},
- {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"},
- {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"},
- {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"},
- {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"},
- {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"},
- {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"},
- {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"},
- {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"},
- {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"},
- {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"},
- {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"},
- {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"},
- {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"},
- {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"},
-]
-
-[package.dependencies]
-pycparser = "*"
-
-[[package]]
-name = "cfgv"
-version = "3.4.0"
-description = "Validate configuration and produce human readable error messages."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"},
- {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"},
-]
-
-[[package]]
-name = "charset-normalizer"
-version = "3.3.2"
-description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
-optional = false
-python-versions = ">=3.7.0"
-files = [
- {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"},
- {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"},
-]
-
-[[package]]
-name = "cmake"
-version = "3.28.4"
-description = "CMake is an open-source, cross-platform family of tools designed to build, test and package software"
-optional = false
-python-versions = "*"
-files = [
- {file = "cmake-3.28.4-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:d642ee5e0f8e7252c75968bae3a1729dbbff6965f9dfb76d2f1611c583de14fd"},
- {file = "cmake-3.28.4-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl", hash = "sha256:b45bc5d881727a6319d7f4b2b44e68e479ac76f18923a8eb551eb3869f2fe82a"},
- {file = "cmake-3.28.4-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:f1b1bde70f6467aa7f20c110ca35a80256509311c57e487c2d195c4ea0aed08b"},
- {file = "cmake-3.28.4-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:58e8de07e5f1b6dae1b211ce6c7ddfa0aa2fac30676947902c31919c74d765f3"},
- {file = "cmake-3.28.4-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:7b874b94776d25d4c4a09b1006755c18a3ed74dc43ec887fa83a1b0e22c87c5d"},
- {file = "cmake-3.28.4-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:83c7c569ce4c4a6bc57d2f2512c3ce3232a28aaf9ef1f95200368cf1e417c311"},
- {file = "cmake-3.28.4-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:a140a6b22fcf8c126932a358b554ee7ee780018153f55cdd8014f7bf970c2dba"},
- {file = "cmake-3.28.4-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bc06b483cb2bcaf78184e66ac7fd0f3bbe4ed9a690369b1e4897b19568d566dd"},
- {file = "cmake-3.28.4-py2.py3-none-musllinux_1_1_aarch64.whl", hash = "sha256:8df18932454a0c10bc4255b71015b0cb46cb5ff815dfa7559580c0fa34d4c7bb"},
- {file = "cmake-3.28.4-py2.py3-none-musllinux_1_1_i686.whl", hash = "sha256:0c615eba2dc0381675351ccff1485249afb3b3ca3735b6af1b74fef5ef446d1c"},
- {file = "cmake-3.28.4-py2.py3-none-musllinux_1_1_ppc64le.whl", hash = "sha256:70e606a33cd4daba2a4ff132bf0358ebeb5f5595bba9ff24023c112604f64d81"},
- {file = "cmake-3.28.4-py2.py3-none-musllinux_1_1_s390x.whl", hash = "sha256:c21d79c77f83e506f0858bbe01ac4326d3014c8c0079388bd459b905d2acd30f"},
- {file = "cmake-3.28.4-py2.py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:802a18564b27728b1251e39eebd8e414dda7c6f220848755d4402cfe8c85c181"},
- {file = "cmake-3.28.4-py2.py3-none-win32.whl", hash = "sha256:8c3a0284763c1a7cd5abbcb4bdd49c2489fe61c92e995cb963bb70eccaa5d4f9"},
- {file = "cmake-3.28.4-py2.py3-none-win_amd64.whl", hash = "sha256:58f065208ed5351314d3accc5bcf88d63d6fad2be933fd364a13abdc6398e832"},
- {file = "cmake-3.28.4-py2.py3-none-win_arm64.whl", hash = "sha256:213633f9e11c46dccc955169c4b1bac1775c1c9bfca99e393a7bd97bec3b5d11"},
- {file = "cmake-3.28.4.tar.gz", hash = "sha256:b9dd1010ebe951e1acce054c295d5f891a8ae12b295d158b66020c955ae861b4"},
-]
-
-[package.extras]
-test = ["coverage (>=4.2)", "importlib-metadata (>=2.0)", "pytest (>=3.0.3)", "pytest-cov (>=2.4.0)"]
-
-[[package]]
-name = "colorama"
-version = "0.4.6"
-description = "Cross-platform colored terminal text."
-optional = false
-python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
-files = [
- {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
- {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
-]
-
-[[package]]
-name = "coloredlogs"
-version = "15.0.1"
-description = "Colored terminal output for Python's logging module"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
-files = [
- {file = "coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934"},
- {file = "coloredlogs-15.0.1.tar.gz", hash = "sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0"},
-]
-
-[package.dependencies]
-humanfriendly = ">=9.1"
-
-[package.extras]
-cron = ["capturer (>=2.4)"]
-
-[[package]]
-name = "coverage"
-version = "7.4.4"
-description = "Code coverage measurement for Python"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "coverage-7.4.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0be5efd5127542ef31f165de269f77560d6cdef525fffa446de6f7e9186cfb2"},
- {file = "coverage-7.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ccd341521be3d1b3daeb41960ae94a5e87abe2f46f17224ba5d6f2b8398016cf"},
- {file = "coverage-7.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09fa497a8ab37784fbb20ab699c246053ac294d13fc7eb40ec007a5043ec91f8"},
- {file = "coverage-7.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b1a93009cb80730c9bca5d6d4665494b725b6e8e157c1cb7f2db5b4b122ea562"},
- {file = "coverage-7.4.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:690db6517f09336559dc0b5f55342df62370a48f5469fabf502db2c6d1cffcd2"},
- {file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:09c3255458533cb76ef55da8cc49ffab9e33f083739c8bd4f58e79fecfe288f7"},
- {file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ce1415194b4a6bd0cdcc3a1dfbf58b63f910dcb7330fe15bdff542c56949f87"},
- {file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b91cbc4b195444e7e258ba27ac33769c41b94967919f10037e6355e998af255c"},
- {file = "coverage-7.4.4-cp310-cp310-win32.whl", hash = "sha256:598825b51b81c808cb6f078dcb972f96af96b078faa47af7dfcdf282835baa8d"},
- {file = "coverage-7.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:09ef9199ed6653989ebbcaacc9b62b514bb63ea2f90256e71fea3ed74bd8ff6f"},
- {file = "coverage-7.4.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0f9f50e7ef2a71e2fae92774c99170eb8304e3fdf9c8c3c7ae9bab3e7229c5cf"},
- {file = "coverage-7.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:623512f8ba53c422fcfb2ce68362c97945095b864cda94a92edbaf5994201083"},
- {file = "coverage-7.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0513b9508b93da4e1716744ef6ebc507aff016ba115ffe8ecff744d1322a7b63"},
- {file = "coverage-7.4.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40209e141059b9370a2657c9b15607815359ab3ef9918f0196b6fccce8d3230f"},
- {file = "coverage-7.4.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a2b2b78c78293782fd3767d53e6474582f62443d0504b1554370bde86cc8227"},
- {file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:73bfb9c09951125d06ee473bed216e2c3742f530fc5acc1383883125de76d9cd"},
- {file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1f384c3cc76aeedce208643697fb3e8437604b512255de6d18dae3f27655a384"},
- {file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:54eb8d1bf7cacfbf2a3186019bcf01d11c666bd495ed18717162f7eb1e9dd00b"},
- {file = "coverage-7.4.4-cp311-cp311-win32.whl", hash = "sha256:cac99918c7bba15302a2d81f0312c08054a3359eaa1929c7e4b26ebe41e9b286"},
- {file = "coverage-7.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:b14706df8b2de49869ae03a5ccbc211f4041750cd4a66f698df89d44f4bd30ec"},
- {file = "coverage-7.4.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:201bef2eea65e0e9c56343115ba3814e896afe6d36ffd37bab783261db430f76"},
- {file = "coverage-7.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:41c9c5f3de16b903b610d09650e5e27adbfa7f500302718c9ffd1c12cf9d6818"},
- {file = "coverage-7.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d898fe162d26929b5960e4e138651f7427048e72c853607f2b200909794ed978"},
- {file = "coverage-7.4.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ea79bb50e805cd6ac058dfa3b5c8f6c040cb87fe83de10845857f5535d1db70"},
- {file = "coverage-7.4.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce4b94265ca988c3f8e479e741693d143026632672e3ff924f25fab50518dd51"},
- {file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:00838a35b882694afda09f85e469c96367daa3f3f2b097d846a7216993d37f4c"},
- {file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:fdfafb32984684eb03c2d83e1e51f64f0906b11e64482df3c5db936ce3839d48"},
- {file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:69eb372f7e2ece89f14751fbcbe470295d73ed41ecd37ca36ed2eb47512a6ab9"},
- {file = "coverage-7.4.4-cp312-cp312-win32.whl", hash = "sha256:137eb07173141545e07403cca94ab625cc1cc6bc4c1e97b6e3846270e7e1fea0"},
- {file = "coverage-7.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:d71eec7d83298f1af3326ce0ff1d0ea83c7cb98f72b577097f9083b20bdaf05e"},
- {file = "coverage-7.4.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d5ae728ff3b5401cc320d792866987e7e7e880e6ebd24433b70a33b643bb0384"},
- {file = "coverage-7.4.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cc4f1358cb0c78edef3ed237ef2c86056206bb8d9140e73b6b89fbcfcbdd40e1"},
- {file = "coverage-7.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8130a2aa2acb8788e0b56938786c33c7c98562697bf9f4c7d6e8e5e3a0501e4a"},
- {file = "coverage-7.4.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cf271892d13e43bc2b51e6908ec9a6a5094a4df1d8af0bfc360088ee6c684409"},
- {file = "coverage-7.4.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4cdc86d54b5da0df6d3d3a2f0b710949286094c3a6700c21e9015932b81447e"},
- {file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ae71e7ddb7a413dd60052e90528f2f65270aad4b509563af6d03d53e979feafd"},
- {file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:38dd60d7bf242c4ed5b38e094baf6401faa114fc09e9e6632374388a404f98e7"},
- {file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa5b1c1bfc28384f1f53b69a023d789f72b2e0ab1b3787aae16992a7ca21056c"},
- {file = "coverage-7.4.4-cp38-cp38-win32.whl", hash = "sha256:dfa8fe35a0bb90382837b238fff375de15f0dcdb9ae68ff85f7a63649c98527e"},
- {file = "coverage-7.4.4-cp38-cp38-win_amd64.whl", hash = "sha256:b2991665420a803495e0b90a79233c1433d6ed77ef282e8e152a324bbbc5e0c8"},
- {file = "coverage-7.4.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3b799445b9f7ee8bf299cfaed6f5b226c0037b74886a4e11515e569b36fe310d"},
- {file = "coverage-7.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b4d33f418f46362995f1e9d4f3a35a1b6322cb959c31d88ae56b0298e1c22357"},
- {file = "coverage-7.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aadacf9a2f407a4688d700e4ebab33a7e2e408f2ca04dbf4aef17585389eff3e"},
- {file = "coverage-7.4.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c95949560050d04d46b919301826525597f07b33beba6187d04fa64d47ac82e"},
- {file = "coverage-7.4.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff7687ca3d7028d8a5f0ebae95a6e4827c5616b31a4ee1192bdfde697db110d4"},
- {file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5fc1de20b2d4a061b3df27ab9b7c7111e9a710f10dc2b84d33a4ab25065994ec"},
- {file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c74880fc64d4958159fbd537a091d2a585448a8f8508bf248d72112723974cbd"},
- {file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:742a76a12aa45b44d236815d282b03cfb1de3b4323f3e4ec933acfae08e54ade"},
- {file = "coverage-7.4.4-cp39-cp39-win32.whl", hash = "sha256:d89d7b2974cae412400e88f35d86af72208e1ede1a541954af5d944a8ba46c57"},
- {file = "coverage-7.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:9ca28a302acb19b6af89e90f33ee3e1906961f94b54ea37de6737b7ca9d8827c"},
- {file = "coverage-7.4.4-pp38.pp39.pp310-none-any.whl", hash = "sha256:b2c5edc4ac10a7ef6605a966c58929ec6c1bd0917fb8c15cb3363f65aa40e677"},
- {file = "coverage-7.4.4.tar.gz", hash = "sha256:c901df83d097649e257e803be22592aedfd5182f07b3cc87d640bbb9afd50f49"},
-]
-
-[package.dependencies]
-tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""}
-
-[package.extras]
-toml = ["tomli"]
-
-[[package]]
-name = "cryptography"
-version = "42.0.5"
-description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "cryptography-42.0.5-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:a30596bae9403a342c978fb47d9b0ee277699fa53bbafad14706af51fe543d16"},
- {file = "cryptography-42.0.5-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:b7ffe927ee6531c78f81aa17e684e2ff617daeba7f189f911065b2ea2d526dec"},
- {file = "cryptography-42.0.5-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2424ff4c4ac7f6b8177b53c17ed5d8fa74ae5955656867f5a8affaca36a27abb"},
- {file = "cryptography-42.0.5-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:329906dcc7b20ff3cad13c069a78124ed8247adcac44b10bea1130e36caae0b4"},
- {file = "cryptography-42.0.5-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:b03c2ae5d2f0fc05f9a2c0c997e1bc18c8229f392234e8a0194f202169ccd278"},
- {file = "cryptography-42.0.5-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:f8837fe1d6ac4a8052a9a8ddab256bc006242696f03368a4009be7ee3075cdb7"},
- {file = "cryptography-42.0.5-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:0270572b8bd2c833c3981724b8ee9747b3ec96f699a9665470018594301439ee"},
- {file = "cryptography-42.0.5-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:b8cac287fafc4ad485b8a9b67d0ee80c66bf3574f655d3b97ef2e1082360faf1"},
- {file = "cryptography-42.0.5-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:16a48c23a62a2f4a285699dba2e4ff2d1cff3115b9df052cdd976a18856d8e3d"},
- {file = "cryptography-42.0.5-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:2bce03af1ce5a5567ab89bd90d11e7bbdff56b8af3acbbec1faded8f44cb06da"},
- {file = "cryptography-42.0.5-cp37-abi3-win32.whl", hash = "sha256:b6cd2203306b63e41acdf39aa93b86fb566049aeb6dc489b70e34bcd07adca74"},
- {file = "cryptography-42.0.5-cp37-abi3-win_amd64.whl", hash = "sha256:98d8dc6d012b82287f2c3d26ce1d2dd130ec200c8679b6213b3c73c08b2b7940"},
- {file = "cryptography-42.0.5-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:5e6275c09d2badf57aea3afa80d975444f4be8d3bc58f7f80d2a484c6f9485c8"},
- {file = "cryptography-42.0.5-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4985a790f921508f36f81831817cbc03b102d643b5fcb81cd33df3fa291a1a1"},
- {file = "cryptography-42.0.5-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7cde5f38e614f55e28d831754e8a3bacf9ace5d1566235e39d91b35502d6936e"},
- {file = "cryptography-42.0.5-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:7367d7b2eca6513681127ebad53b2582911d1736dc2ffc19f2c3ae49997496bc"},
- {file = "cryptography-42.0.5-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:cd2030f6650c089aeb304cf093f3244d34745ce0cfcc39f20c6fbfe030102e2a"},
- {file = "cryptography-42.0.5-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a2913c5375154b6ef2e91c10b5720ea6e21007412f6437504ffea2109b5a33d7"},
- {file = "cryptography-42.0.5-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:c41fb5e6a5fe9ebcd58ca3abfeb51dffb5d83d6775405305bfa8715b76521922"},
- {file = "cryptography-42.0.5-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:3eaafe47ec0d0ffcc9349e1708be2aaea4c6dd4978d76bf6eb0cb2c13636c6fc"},
- {file = "cryptography-42.0.5-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:1b95b98b0d2af784078fa69f637135e3c317091b615cd0905f8b8a087e86fa30"},
- {file = "cryptography-42.0.5-cp39-abi3-win32.whl", hash = "sha256:1f71c10d1e88467126f0efd484bd44bca5e14c664ec2ede64c32f20875c0d413"},
- {file = "cryptography-42.0.5-cp39-abi3-win_amd64.whl", hash = "sha256:a011a644f6d7d03736214d38832e030d8268bcff4a41f728e6030325fea3e400"},
- {file = "cryptography-42.0.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:9481ffe3cf013b71b2428b905c4f7a9a4f76ec03065b05ff499bb5682a8d9ad8"},
- {file = "cryptography-42.0.5-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:ba334e6e4b1d92442b75ddacc615c5476d4ad55cc29b15d590cc6b86efa487e2"},
- {file = "cryptography-42.0.5-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:ba3e4a42397c25b7ff88cdec6e2a16c2be18720f317506ee25210f6d31925f9c"},
- {file = "cryptography-42.0.5-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:111a0d8553afcf8eb02a4fea6ca4f59d48ddb34497aa8706a6cf536f1a5ec576"},
- {file = "cryptography-42.0.5-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:cd65d75953847815962c84a4654a84850b2bb4aed3f26fadcc1c13892e1e29f6"},
- {file = "cryptography-42.0.5-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:e807b3188f9eb0eaa7bbb579b462c5ace579f1cedb28107ce8b48a9f7ad3679e"},
- {file = "cryptography-42.0.5-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f12764b8fffc7a123f641d7d049d382b73f96a34117e0b637b80643169cec8ac"},
- {file = "cryptography-42.0.5-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:37dd623507659e08be98eec89323469e8c7b4c1407c85112634ae3dbdb926fdd"},
- {file = "cryptography-42.0.5.tar.gz", hash = "sha256:6fe07eec95dfd477eb9530aef5bead34fec819b3aaf6c5bd6d20565da607bfe1"},
-]
-
-[package.dependencies]
-cffi = {version = ">=1.12", markers = "platform_python_implementation != \"PyPy\""}
-
-[package.extras]
-docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"]
-docstest = ["pyenchant (>=1.6.11)", "readme-renderer", "sphinxcontrib-spelling (>=4.0.1)"]
-nox = ["nox"]
-pep8test = ["check-sdist", "click", "mypy", "ruff"]
-sdist = ["build"]
-ssh = ["bcrypt (>=3.1.5)"]
-test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"]
-test-randomorder = ["pytest-randomly"]
-
-[[package]]
-name = "ctranslate2"
-version = "4.1.0"
-description = "Fast inference engine for Transformer models"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "ctranslate2-4.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8b3154cb8bfd4f320ee6dcc5ec2962c020a649eb2311e0edb90bc720f0eab529"},
- {file = "ctranslate2-4.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7e06cf9a0c6cf4e91c9edb1bdcb0c78fa9cd3fe5b18d7a380194e82f5881917c"},
- {file = "ctranslate2-4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d11878e72dce458e6d30ca6f06b4cfe92a6a0e6d271879de4208100cbac3fa5"},
- {file = "ctranslate2-4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1793445fddf1ceea25aaaf7ebfa9adce6d774411fd0e3bae123355c71d122dff"},
- {file = "ctranslate2-4.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:f22a81138a106e42659d3c8b848f58ea813de8a7f17bf72e5aebbe3bf24cb5b4"},
- {file = "ctranslate2-4.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6b9580e3b494e8414a2a5f7733e029fd534b1b942ed657c27d413442299c661c"},
- {file = "ctranslate2-4.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:176e2856c2f312d85bc96358cf8c4ef7a377436d789942354b1c3a6d5d32cea1"},
- {file = "ctranslate2-4.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32d8a25fe1854454f236f02caf3ca819ac63fd3b7f6edd9c1b7dc7f4998451de"},
- {file = "ctranslate2-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02f92e2831b0ab04d5d2e6e1139f4035db859e7f99fe6a98fb9a385d99ce2d70"},
- {file = "ctranslate2-4.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:829fd5d8bfc907e48312072aae4470093731c3714e4248abf5034942f240742e"},
- {file = "ctranslate2-4.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:48a520d6cc89f7bac491a1445ca1c5d2afd0dd40793ac1970d05d89df0064184"},
- {file = "ctranslate2-4.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4bdbe25946526ad2f4ed4b9ab23779d106c91d80e996222617e212aa493c13be"},
- {file = "ctranslate2-4.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:040a33118c4b24e6bc73726491785c5f24ac365c1878b04f8772684eaa54ef68"},
- {file = "ctranslate2-4.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e43be4745ae2c87f9863b7006169b81983749041f085ee62c8858e739f25c255"},
- {file = "ctranslate2-4.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:737610101b852ffaefa8f5534645cbbbe53d165faa78d587a732ad35ab815f88"},
- {file = "ctranslate2-4.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:df3d923460e92f8641bd76e0592d208bff763226e52ac79e2a7d77ef714bffb1"},
- {file = "ctranslate2-4.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cafa26a6c55d31081544cacbe222ab0226369ae8a35ddf14b493078601f6825a"},
- {file = "ctranslate2-4.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:190ef37ec43daf56abaf5103d8d9b425cef2d2aa80d5e7dd900d2e30157c5fad"},
- {file = "ctranslate2-4.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65e44dfcd88376310fc2b51561550600ec444f62ce9b3469d0e1f98d71d5e844"},
- {file = "ctranslate2-4.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:72b4719997ee2693fff8d00e0d63046595a5e293c2412941115afdc55791a92f"},
- {file = "ctranslate2-4.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:411c84d8858b65dd05595c659a89a405426bd824788132139f474c48998255de"},
- {file = "ctranslate2-4.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2f70b696cbb222cb1dfa3b4ab1a385c1c801df7f250ede63b2d30bdb0471f1a5"},
- {file = "ctranslate2-4.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf9f23e7a354024758ff503a9c287986b0b49b363695438ce90056f390f0ac9d"},
- {file = "ctranslate2-4.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8964d97936950ecd9ec0bc90ceb503156c704901287d52b0129df9d6800dd81b"},
- {file = "ctranslate2-4.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:4adaeb8fdaa61b881b8e91bbc01b580b07b6581facc3de01844a09dad704b31e"},
-]
-
-[package.dependencies]
-numpy = "*"
-pyyaml = ">=5.3,<7"
-setuptools = "*"
-
-[[package]]
-name = "ctypesgen"
-version = "1.1.1"
-description = "Python wrapper generator for ctypes"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "ctypesgen-1.1.1-py3-none-any.whl", hash = "sha256:94cc6c89ccdd93a72a4c915266cde9a82bfe693331d9d880f66fe9d82af1fc87"},
- {file = "ctypesgen-1.1.1.tar.gz", hash = "sha256:deaa2d64a95d90196a2e8a689cf9b952be6f3366f81e835245354bf9dbac92f6"},
-]
-
-[[package]]
-name = "darkdetect"
-version = "0.8.0"
-description = "Detect OS Dark Mode from Python"
-optional = false
-python-versions = ">=3.6"
-files = [
- {file = "darkdetect-0.8.0-py3-none-any.whl", hash = "sha256:a7509ccf517eaad92b31c214f593dbcf138ea8a43b2935406bbd565e15527a85"},
- {file = "darkdetect-0.8.0.tar.gz", hash = "sha256:b5428e1170263eb5dea44c25dc3895edd75e6f52300986353cd63533fe7df8b1"},
-]
-
-[package.extras]
-macos-listener = ["pyobjc-framework-Cocoa"]
-
-[[package]]
-name = "dataclasses-json"
-version = "0.6.4"
-description = "Easily serialize dataclasses to and from JSON."
-optional = false
-python-versions = ">=3.7,<4.0"
-files = [
- {file = "dataclasses_json-0.6.4-py3-none-any.whl", hash = "sha256:f90578b8a3177f7552f4e1a6e535e84293cd5da421fcce0642d49c0d7bdf8df2"},
- {file = "dataclasses_json-0.6.4.tar.gz", hash = "sha256:73696ebf24936560cca79a2430cbc4f3dd23ac7bf46ed17f38e5e5e7657a6377"},
-]
-
-[package.dependencies]
-marshmallow = ">=3.18.0,<4.0.0"
-typing-inspect = ">=0.4.0,<1"
-
-[[package]]
-name = "dill"
-version = "0.3.8"
-description = "serialize all of Python"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "dill-0.3.8-py3-none-any.whl", hash = "sha256:c36ca9ffb54365bdd2f8eb3eff7d2a21237f8452b57ace88b1ac615b7e815bd7"},
- {file = "dill-0.3.8.tar.gz", hash = "sha256:3ebe3c479ad625c4553aca177444d89b486b1d84982eeacded644afc0cf797ca"},
-]
-
-[package.extras]
-graph = ["objgraph (>=1.7.2)"]
-profile = ["gprof2dot (>=2022.7.29)"]
-
-[[package]]
-name = "distlib"
-version = "0.3.8"
-description = "Distribution utilities"
-optional = false
-python-versions = "*"
-files = [
- {file = "distlib-0.3.8-py2.py3-none-any.whl", hash = "sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784"},
- {file = "distlib-0.3.8.tar.gz", hash = "sha256:1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64"},
-]
-
-[[package]]
-name = "distro"
-version = "1.9.0"
-description = "Distro - an OS platform information API"
-optional = false
-python-versions = ">=3.6"
-files = [
- {file = "distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2"},
- {file = "distro-1.9.0.tar.gz", hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed"},
-]
-
-[[package]]
-name = "exceptiongroup"
-version = "1.2.0"
-description = "Backport of PEP 654 (exception groups)"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"},
- {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"},
-]
-
-[package.extras]
-test = ["pytest (>=6)"]
-
-[[package]]
-name = "faster-whisper"
-version = "1.0.3"
-description = "Faster Whisper transcription with CTranslate2"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "faster-whisper-1.0.3.tar.gz", hash = "sha256:1a145db86450b56aaa623c8df7d4ef86e8a1159900f60533e2890e98e8453a17"},
- {file = "faster_whisper-1.0.3-py3-none-any.whl", hash = "sha256:364d0e378ab232ed26f39656e5c98548b38045224e206b20f7d8c90e2745b9d3"},
-]
-
-[package.dependencies]
-av = ">=11.0,<13"
-ctranslate2 = ">=4.0,<5"
-huggingface-hub = ">=0.13"
-onnxruntime = ">=1.14,<2"
-tokenizers = ">=0.13,<1"
-
-[package.extras]
-conversion = ["transformers[torch] (>=4.23)"]
-dev = ["black (==23.*)", "flake8 (==6.*)", "isort (==5.*)", "pytest (==7.*)"]
-
-[[package]]
-name = "filelock"
-version = "3.13.1"
-description = "A platform independent file lock."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "filelock-3.13.1-py3-none-any.whl", hash = "sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c"},
- {file = "filelock-3.13.1.tar.gz", hash = "sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e"},
-]
-
-[package.extras]
-docs = ["furo (>=2023.9.10)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.24)"]
-testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)"]
-typing = ["typing-extensions (>=4.8)"]
-
-[[package]]
-name = "flatbuffers"
-version = "24.3.7"
-description = "The FlatBuffers serialization format for Python"
-optional = false
-python-versions = "*"
-files = [
- {file = "flatbuffers-24.3.7-py2.py3-none-any.whl", hash = "sha256:80c4f5dcad0ee76b7e349671a0d657f2fbba927a0244f88dd3f5ed6a3694e1fc"},
- {file = "flatbuffers-24.3.7.tar.gz", hash = "sha256:0895c22b9a6019ff2f4de2e5e2f7cd15914043e6e7033a94c0c6369422690f22"},
-]
-
-[[package]]
-name = "fsspec"
-version = "2024.3.1"
-description = "File-system specification"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "fsspec-2024.3.1-py3-none-any.whl", hash = "sha256:918d18d41bf73f0e2b261824baeb1b124bcf771767e3a26425cd7dec3332f512"},
- {file = "fsspec-2024.3.1.tar.gz", hash = "sha256:f39780e282d7d117ffb42bb96992f8a90795e4d0fb0f661a70ca39fe9c43ded9"},
-]
-
-[package.extras]
-abfs = ["adlfs"]
-adl = ["adlfs"]
-arrow = ["pyarrow (>=1)"]
-dask = ["dask", "distributed"]
-devel = ["pytest", "pytest-cov"]
-dropbox = ["dropbox", "dropboxdrivefs", "requests"]
-full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "dask", "distributed", "dropbox", "dropboxdrivefs", "fusepy", "gcsfs", "libarchive-c", "ocifs", "panel", "paramiko", "pyarrow (>=1)", "pygit2", "requests", "s3fs", "smbprotocol", "tqdm"]
-fuse = ["fusepy"]
-gcs = ["gcsfs"]
-git = ["pygit2"]
-github = ["requests"]
-gs = ["gcsfs"]
-gui = ["panel"]
-hdfs = ["pyarrow (>=1)"]
-http = ["aiohttp (!=4.0.0a0,!=4.0.0a1)"]
-libarchive = ["libarchive-c"]
-oci = ["ocifs"]
-s3 = ["s3fs"]
-sftp = ["paramiko"]
-smb = ["smbprotocol"]
-ssh = ["paramiko"]
-tqdm = ["tqdm"]
-
-[[package]]
-name = "h11"
-version = "0.14.0"
-description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"},
- {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"},
-]
-
-[[package]]
-name = "httpcore"
-version = "1.0.4"
-description = "A minimal low-level HTTP client."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "httpcore-1.0.4-py3-none-any.whl", hash = "sha256:ac418c1db41bade2ad53ae2f3834a3a0f5ae76b56cf5aa497d2d033384fc7d73"},
- {file = "httpcore-1.0.4.tar.gz", hash = "sha256:cb2839ccfcba0d2d3c1131d3c3e26dfc327326fbe7a5dc0dbfe9f6c9151bb022"},
-]
-
-[package.dependencies]
-certifi = "*"
-h11 = ">=0.13,<0.15"
-
-[package.extras]
-asyncio = ["anyio (>=4.0,<5.0)"]
-http2 = ["h2 (>=3,<5)"]
-socks = ["socksio (==1.*)"]
-trio = ["trio (>=0.22.0,<0.25.0)"]
-
-[[package]]
-name = "httpx"
-version = "0.27.0"
-description = "The next generation HTTP client."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "httpx-0.27.0-py3-none-any.whl", hash = "sha256:71d5465162c13681bff01ad59b2cc68dd838ea1f10e51574bac27103f00c91a5"},
- {file = "httpx-0.27.0.tar.gz", hash = "sha256:a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5"},
-]
-
-[package.dependencies]
-anyio = "*"
-certifi = "*"
-httpcore = "==1.*"
-idna = "*"
-sniffio = "*"
-
-[package.extras]
-brotli = ["brotli", "brotlicffi"]
-cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"]
-http2 = ["h2 (>=3,<5)"]
-socks = ["socksio (==1.*)"]
-
-[[package]]
-name = "huggingface-hub"
-version = "0.26.2"
-description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub"
-optional = false
-python-versions = ">=3.8.0"
-files = [
- {file = "huggingface_hub-0.26.2-py3-none-any.whl", hash = "sha256:98c2a5a8e786c7b2cb6fdeb2740893cba4d53e312572ed3d8afafda65b128c46"},
- {file = "huggingface_hub-0.26.2.tar.gz", hash = "sha256:b100d853465d965733964d123939ba287da60a547087783ddff8a323f340332b"},
-]
-
-[package.dependencies]
-filelock = "*"
-fsspec = ">=2023.5.0"
-packaging = ">=20.9"
-pyyaml = ">=5.1"
-requests = "*"
-tqdm = ">=4.42.1"
-typing-extensions = ">=3.7.4.3"
-
-[package.extras]
-all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "libcst (==1.4.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"]
-cli = ["InquirerPy (==0.3.4)"]
-dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "libcst (==1.4.0)", "mypy (==1.5.1)", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "ruff (>=0.5.0)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"]
-fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"]
-hf-transfer = ["hf-transfer (>=0.1.4)"]
-inference = ["aiohttp"]
-quality = ["libcst (==1.4.0)", "mypy (==1.5.1)", "ruff (>=0.5.0)"]
-tensorflow = ["graphviz", "pydot", "tensorflow"]
-tensorflow-testing = ["keras (<3.0)", "tensorflow"]
-testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "fastapi", "gradio (>=4.0.0)", "jedi", "numpy", "pytest (>=8.1.1,<8.2.2)", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-mock", "pytest-rerunfailures", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"]
-torch = ["safetensors[torch]", "torch"]
-typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)"]
-
-[[package]]
-name = "humanfriendly"
-version = "10.0"
-description = "Human friendly output for text interfaces using Python"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
-files = [
- {file = "humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477"},
- {file = "humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc"},
-]
-
-[package.dependencies]
-pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_version >= \"3.8\""}
-
-[[package]]
-name = "humanize"
-version = "4.9.0"
-description = "Python humanize utilities"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "humanize-4.9.0-py3-none-any.whl", hash = "sha256:ce284a76d5b1377fd8836733b983bfb0b76f1aa1c090de2566fcf008d7f6ab16"},
- {file = "humanize-4.9.0.tar.gz", hash = "sha256:582a265c931c683a7e9b8ed9559089dea7edcf6cc95be39a3cbc2c5d5ac2bcfa"},
-]
-
-[package.extras]
-tests = ["freezegun", "pytest", "pytest-cov"]
-
-[[package]]
-name = "identify"
-version = "2.5.35"
-description = "File identification library for Python"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "identify-2.5.35-py2.py3-none-any.whl", hash = "sha256:c4de0081837b211594f8e877a6b4fad7ca32bbfc1a9307fdd61c28bfe923f13e"},
- {file = "identify-2.5.35.tar.gz", hash = "sha256:10a7ca245cfcd756a554a7288159f72ff105ad233c7c4b9c6f0f4d108f5f6791"},
-]
-
-[package.extras]
-license = ["ukkonen"]
-
-[[package]]
-name = "idna"
-version = "3.6"
-description = "Internationalized Domain Names in Applications (IDNA)"
-optional = false
-python-versions = ">=3.5"
-files = [
- {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"},
- {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"},
-]
-
-[[package]]
-name = "importlib-metadata"
-version = "7.1.0"
-description = "Read metadata from Python packages"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "importlib_metadata-7.1.0-py3-none-any.whl", hash = "sha256:30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570"},
- {file = "importlib_metadata-7.1.0.tar.gz", hash = "sha256:b78938b926ee8d5f020fc4772d487045805a55ddbad2ecf21c6d60938dc7fcd2"},
-]
-
-[package.dependencies]
-zipp = ">=0.5"
-
-[package.extras]
-docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
-perf = ["ipython"]
-testing = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-perf (>=0.9.2)", "pytest-ruff (>=0.2.1)"]
-
-[[package]]
-name = "iniconfig"
-version = "2.0.0"
-description = "brain-dead simple config-ini parsing"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"},
- {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"},
-]
-
-[[package]]
-name = "isort"
-version = "5.13.2"
-description = "A Python utility / library to sort Python imports."
-optional = false
-python-versions = ">=3.8.0"
-files = [
- {file = "isort-5.13.2-py3-none-any.whl", hash = "sha256:8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6"},
- {file = "isort-5.13.2.tar.gz", hash = "sha256:48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109"},
-]
-
-[package.extras]
-colors = ["colorama (>=0.4.6)"]
-
-[[package]]
-name = "jaraco-classes"
-version = "3.3.1"
-description = "Utility functions for Python class constructs"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "jaraco.classes-3.3.1-py3-none-any.whl", hash = "sha256:86b534de565381f6b3c1c830d13f931d7be1a75f0081c57dff615578676e2206"},
- {file = "jaraco.classes-3.3.1.tar.gz", hash = "sha256:cb28a5ebda8bc47d8c8015307d93163464f9f2b91ab4006e09ff0ce07e8bfb30"},
-]
-
-[package.dependencies]
-more-itertools = "*"
-
-[package.extras]
-docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"]
-testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)"]
-
-[[package]]
-name = "jaraco-context"
-version = "4.3.0"
-description = "Context managers by jaraco"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "jaraco.context-4.3.0-py3-none-any.whl", hash = "sha256:5d9e95ca0faa78943ed66f6bc658dd637430f16125d86988e77844c741ff2f11"},
- {file = "jaraco.context-4.3.0.tar.gz", hash = "sha256:4dad2404540b936a20acedec53355bdaea223acb88fd329fa6de9261c941566e"},
-]
-
-[package.extras]
-docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
-testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"]
-
-[[package]]
-name = "jaraco-functools"
-version = "4.0.0"
-description = "Functools like those found in stdlib"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "jaraco.functools-4.0.0-py3-none-any.whl", hash = "sha256:daf276ddf234bea897ef14f43c4e1bf9eefeac7b7a82a4dd69228ac20acff68d"},
- {file = "jaraco.functools-4.0.0.tar.gz", hash = "sha256:c279cb24c93d694ef7270f970d499cab4d3813f4e08273f95398651a634f0925"},
-]
-
-[package.dependencies]
-more-itertools = "*"
-
-[package.extras]
-docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"]
-testing = ["jaraco.classes", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-ruff"]
-
-[[package]]
-name = "jeepney"
-version = "0.8.0"
-description = "Low-level, pure Python DBus protocol wrapper."
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "jeepney-0.8.0-py3-none-any.whl", hash = "sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755"},
- {file = "jeepney-0.8.0.tar.gz", hash = "sha256:5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806"},
-]
-
-[package.extras]
-test = ["async-timeout", "pytest", "pytest-asyncio (>=0.17)", "pytest-trio", "testpath", "trio"]
-trio = ["async_generator", "trio"]
-
-[[package]]
-name = "jinja2"
-version = "3.1.3"
-description = "A very fast and expressive template engine."
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "Jinja2-3.1.3-py3-none-any.whl", hash = "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa"},
- {file = "Jinja2-3.1.3.tar.gz", hash = "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90"},
-]
-
-[package.dependencies]
-MarkupSafe = ">=2.0"
-
-[package.extras]
-i18n = ["Babel (>=2.7)"]
-
-[[package]]
-name = "keyring"
-version = "25.0.0"
-description = "Store and access your passwords safely."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "keyring-25.0.0-py3-none-any.whl", hash = "sha256:9a15cd280338920388e8c1787cb8792b9755dabb3e7c61af5ac1f8cd437cefde"},
- {file = "keyring-25.0.0.tar.gz", hash = "sha256:fc024ed53c7ea090e30723e6bd82f58a39dc25d9a6797d866203ecd0ee6306cb"},
-]
-
-[package.dependencies]
-importlib-metadata = {version = ">=4.11.4", markers = "python_version < \"3.12\""}
-"jaraco.classes" = "*"
-"jaraco.context" = "*"
-"jaraco.functools" = "*"
-jeepney = {version = ">=0.4.2", markers = "sys_platform == \"linux\""}
-pywin32-ctypes = {version = ">=0.2.0", markers = "sys_platform == \"win32\""}
-SecretStorage = {version = ">=3.2", markers = "sys_platform == \"linux\""}
-
-[package.extras]
-completion = ["shtab (>=1.1.0)"]
-docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
-testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)"]
-
-[[package]]
-name = "lazy-object-proxy"
-version = "1.10.0"
-description = "A fast and thorough lazy object proxy."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "lazy-object-proxy-1.10.0.tar.gz", hash = "sha256:78247b6d45f43a52ef35c25b5581459e85117225408a4128a3daf8bf9648ac69"},
- {file = "lazy_object_proxy-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:855e068b0358ab916454464a884779c7ffa312b8925c6f7401e952dcf3b89977"},
- {file = "lazy_object_proxy-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab7004cf2e59f7c2e4345604a3e6ea0d92ac44e1c2375527d56492014e690c3"},
- {file = "lazy_object_proxy-1.10.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc0d2fc424e54c70c4bc06787e4072c4f3b1aa2f897dfdc34ce1013cf3ceef05"},
- {file = "lazy_object_proxy-1.10.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e2adb09778797da09d2b5ebdbceebf7dd32e2c96f79da9052b2e87b6ea495895"},
- {file = "lazy_object_proxy-1.10.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b1f711e2c6dcd4edd372cf5dec5c5a30d23bba06ee012093267b3376c079ec83"},
- {file = "lazy_object_proxy-1.10.0-cp310-cp310-win32.whl", hash = "sha256:76a095cfe6045c7d0ca77db9934e8f7b71b14645f0094ffcd842349ada5c5fb9"},
- {file = "lazy_object_proxy-1.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:b4f87d4ed9064b2628da63830986c3d2dca7501e6018347798313fcf028e2fd4"},
- {file = "lazy_object_proxy-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fec03caabbc6b59ea4a638bee5fce7117be8e99a4103d9d5ad77f15d6f81020c"},
- {file = "lazy_object_proxy-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02c83f957782cbbe8136bee26416686a6ae998c7b6191711a04da776dc9e47d4"},
- {file = "lazy_object_proxy-1.10.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:009e6bb1f1935a62889ddc8541514b6a9e1fcf302667dcb049a0be5c8f613e56"},
- {file = "lazy_object_proxy-1.10.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:75fc59fc450050b1b3c203c35020bc41bd2695ed692a392924c6ce180c6f1dc9"},
- {file = "lazy_object_proxy-1.10.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:782e2c9b2aab1708ffb07d4bf377d12901d7a1d99e5e410d648d892f8967ab1f"},
- {file = "lazy_object_proxy-1.10.0-cp311-cp311-win32.whl", hash = "sha256:edb45bb8278574710e68a6b021599a10ce730d156e5b254941754a9cc0b17d03"},
- {file = "lazy_object_proxy-1.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:e271058822765ad5e3bca7f05f2ace0de58a3f4e62045a8c90a0dfd2f8ad8cc6"},
- {file = "lazy_object_proxy-1.10.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e98c8af98d5707dcdecc9ab0863c0ea6e88545d42ca7c3feffb6b4d1e370c7ba"},
- {file = "lazy_object_proxy-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:952c81d415b9b80ea261d2372d2a4a2332a3890c2b83e0535f263ddfe43f0d43"},
- {file = "lazy_object_proxy-1.10.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80b39d3a151309efc8cc48675918891b865bdf742a8616a337cb0090791a0de9"},
- {file = "lazy_object_proxy-1.10.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:e221060b701e2aa2ea991542900dd13907a5c90fa80e199dbf5a03359019e7a3"},
- {file = "lazy_object_proxy-1.10.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:92f09ff65ecff3108e56526f9e2481b8116c0b9e1425325e13245abfd79bdb1b"},
- {file = "lazy_object_proxy-1.10.0-cp312-cp312-win32.whl", hash = "sha256:3ad54b9ddbe20ae9f7c1b29e52f123120772b06dbb18ec6be9101369d63a4074"},
- {file = "lazy_object_proxy-1.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:127a789c75151db6af398b8972178afe6bda7d6f68730c057fbbc2e96b08d282"},
- {file = "lazy_object_proxy-1.10.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9e4ed0518a14dd26092614412936920ad081a424bdcb54cc13349a8e2c6d106a"},
- {file = "lazy_object_proxy-1.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ad9e6ed739285919aa9661a5bbed0aaf410aa60231373c5579c6b4801bd883c"},
- {file = "lazy_object_proxy-1.10.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fc0a92c02fa1ca1e84fc60fa258458e5bf89d90a1ddaeb8ed9cc3147f417255"},
- {file = "lazy_object_proxy-1.10.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0aefc7591920bbd360d57ea03c995cebc204b424524a5bd78406f6e1b8b2a5d8"},
- {file = "lazy_object_proxy-1.10.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5faf03a7d8942bb4476e3b62fd0f4cf94eaf4618e304a19865abf89a35c0bbee"},
- {file = "lazy_object_proxy-1.10.0-cp38-cp38-win32.whl", hash = "sha256:e333e2324307a7b5d86adfa835bb500ee70bfcd1447384a822e96495796b0ca4"},
- {file = "lazy_object_proxy-1.10.0-cp38-cp38-win_amd64.whl", hash = "sha256:cb73507defd385b7705c599a94474b1d5222a508e502553ef94114a143ec6696"},
- {file = "lazy_object_proxy-1.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:366c32fe5355ef5fc8a232c5436f4cc66e9d3e8967c01fb2e6302fd6627e3d94"},
- {file = "lazy_object_proxy-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2297f08f08a2bb0d32a4265e98a006643cd7233fb7983032bd61ac7a02956b3b"},
- {file = "lazy_object_proxy-1.10.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18dd842b49456aaa9a7cf535b04ca4571a302ff72ed8740d06b5adcd41fe0757"},
- {file = "lazy_object_proxy-1.10.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:217138197c170a2a74ca0e05bddcd5f1796c735c37d0eee33e43259b192aa424"},
- {file = "lazy_object_proxy-1.10.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9a3a87cf1e133e5b1994144c12ca4aa3d9698517fe1e2ca82977781b16955658"},
- {file = "lazy_object_proxy-1.10.0-cp39-cp39-win32.whl", hash = "sha256:30b339b2a743c5288405aa79a69e706a06e02958eab31859f7f3c04980853b70"},
- {file = "lazy_object_proxy-1.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:a899b10e17743683b293a729d3a11f2f399e8a90c73b089e29f5d0fe3509f0dd"},
- {file = "lazy_object_proxy-1.10.0-pp310.pp311.pp312.pp38.pp39-none-any.whl", hash = "sha256:80fa48bd89c8f2f456fc0765c11c23bf5af827febacd2f523ca5bc1893fcc09d"},
-]
-
-[[package]]
-name = "llvmlite"
-version = "0.42.0"
-description = "lightweight wrapper around basic LLVM functionality"
-optional = false
-python-versions = ">=3.9"
-files = [
- {file = "llvmlite-0.42.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3366938e1bf63d26c34fbfb4c8e8d2ded57d11e0567d5bb243d89aab1eb56098"},
- {file = "llvmlite-0.42.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c35da49666a21185d21b551fc3caf46a935d54d66969d32d72af109b5e7d2b6f"},
- {file = "llvmlite-0.42.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70f44ccc3c6220bd23e0ba698a63ec2a7d3205da0d848804807f37fc243e3f77"},
- {file = "llvmlite-0.42.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:763f8d8717a9073b9e0246998de89929071d15b47f254c10eef2310b9aac033d"},
- {file = "llvmlite-0.42.0-cp310-cp310-win_amd64.whl", hash = "sha256:8d90edf400b4ceb3a0e776b6c6e4656d05c7187c439587e06f86afceb66d2be5"},
- {file = "llvmlite-0.42.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ae511caed28beaf1252dbaf5f40e663f533b79ceb408c874c01754cafabb9cbf"},
- {file = "llvmlite-0.42.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81e674c2fe85576e6c4474e8c7e7aba7901ac0196e864fe7985492b737dbab65"},
- {file = "llvmlite-0.42.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb3975787f13eb97629052edb5017f6c170eebc1c14a0433e8089e5db43bcce6"},
- {file = "llvmlite-0.42.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5bece0cdf77f22379f19b1959ccd7aee518afa4afbd3656c6365865f84903f9"},
- {file = "llvmlite-0.42.0-cp311-cp311-win_amd64.whl", hash = "sha256:7e0c4c11c8c2aa9b0701f91b799cb9134a6a6de51444eff5a9087fc7c1384275"},
- {file = "llvmlite-0.42.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:08fa9ab02b0d0179c688a4216b8939138266519aaa0aa94f1195a8542faedb56"},
- {file = "llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b2fce7d355068494d1e42202c7aff25d50c462584233013eb4470c33b995e3ee"},
- {file = "llvmlite-0.42.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebe66a86dc44634b59a3bc860c7b20d26d9aaffcd30364ebe8ba79161a9121f4"},
- {file = "llvmlite-0.42.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d47494552559e00d81bfb836cf1c4d5a5062e54102cc5767d5aa1e77ccd2505c"},
- {file = "llvmlite-0.42.0-cp312-cp312-win_amd64.whl", hash = "sha256:05cb7e9b6ce69165ce4d1b994fbdedca0c62492e537b0cc86141b6e2c78d5888"},
- {file = "llvmlite-0.42.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bdd3888544538a94d7ec99e7c62a0cdd8833609c85f0c23fcb6c5c591aec60ad"},
- {file = "llvmlite-0.42.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d0936c2067a67fb8816c908d5457d63eba3e2b17e515c5fe00e5ee2bace06040"},
- {file = "llvmlite-0.42.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a78ab89f1924fc11482209f6799a7a3fc74ddc80425a7a3e0e8174af0e9e2301"},
- {file = "llvmlite-0.42.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7599b65c7af7abbc978dbf345712c60fd596aa5670496561cc10e8a71cebfb2"},
- {file = "llvmlite-0.42.0-cp39-cp39-win_amd64.whl", hash = "sha256:43d65cc4e206c2e902c1004dd5418417c4efa6c1d04df05c6c5675a27e8ca90e"},
- {file = "llvmlite-0.42.0.tar.gz", hash = "sha256:f92b09243c0cc3f457da8b983f67bd8e1295d0f5b3746c7a1861d7a99403854a"},
-]
-
-[[package]]
-name = "macholib"
-version = "1.16.3"
-description = "Mach-O header analysis and editing"
-optional = false
-python-versions = "*"
-files = [
- {file = "macholib-1.16.3-py2.py3-none-any.whl", hash = "sha256:0e315d7583d38b8c77e815b1ecbdbf504a8258d8b3e17b61165c6feb60d18f2c"},
- {file = "macholib-1.16.3.tar.gz", hash = "sha256:07ae9e15e8e4cd9a788013d81f5908b3609aa76f9b1421bae9c4d7606ec86a30"},
-]
-
-[package.dependencies]
-altgraph = ">=0.17"
-
-[[package]]
-name = "markupsafe"
-version = "2.1.5"
-description = "Safely add untrusted strings to HTML/XML markup."
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"},
- {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"},
-]
-
-[[package]]
-name = "marshmallow"
-version = "3.21.1"
-description = "A lightweight library for converting complex datatypes to and from native Python datatypes."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "marshmallow-3.21.1-py3-none-any.whl", hash = "sha256:f085493f79efb0644f270a9bf2892843142d80d7174bbbd2f3713f2a589dc633"},
- {file = "marshmallow-3.21.1.tar.gz", hash = "sha256:4e65e9e0d80fc9e609574b9983cf32579f305c718afb30d7233ab818571768c3"},
-]
-
-[package.dependencies]
-packaging = ">=17.0"
-
-[package.extras]
-dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"]
-docs = ["alabaster (==0.7.16)", "autodocsumm (==0.2.12)", "sphinx (==7.2.6)", "sphinx-issues (==4.0.0)", "sphinx-version-warning (==1.1.2)"]
-tests = ["pytest", "pytz", "simplejson"]
-
-[[package]]
-name = "mccabe"
-version = "0.7.0"
-description = "McCabe checker, plugin for flake8"
-optional = false
-python-versions = ">=3.6"
-files = [
- {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"},
- {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"},
-]
-
-[[package]]
-name = "more-itertools"
-version = "10.2.0"
-description = "More routines for operating on iterables, beyond itertools"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "more-itertools-10.2.0.tar.gz", hash = "sha256:8fccb480c43d3e99a00087634c06dd02b0d50fbf088b380de5a41a015ec239e1"},
- {file = "more_itertools-10.2.0-py3-none-any.whl", hash = "sha256:686b06abe565edfab151cb8fd385a05651e1fdf8f0a14191e4439283421f8684"},
-]
-
-[[package]]
-name = "mpmath"
-version = "1.3.0"
-description = "Python library for arbitrary-precision floating-point arithmetic"
-optional = false
-python-versions = "*"
-files = [
- {file = "mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c"},
- {file = "mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f"},
-]
-
-[package.extras]
-develop = ["codecov", "pycodestyle", "pytest (>=4.6)", "pytest-cov", "wheel"]
-docs = ["sphinx"]
-gmpy = ["gmpy2 (>=2.1.0a4)"]
-tests = ["pytest (>=4.6)"]
-
-[[package]]
-name = "mutagen"
-version = "1.47.0"
-description = "read and write audio tags for many formats"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "mutagen-1.47.0-py3-none-any.whl", hash = "sha256:edd96f50c5907a9539d8e5bba7245f62c9f520aef333d13392a79a4f70aca719"},
- {file = "mutagen-1.47.0.tar.gz", hash = "sha256:719fadef0a978c31b4cf3c956261b3c58b6948b32023078a2117b1de09f0fc99"},
-]
-
-[[package]]
-name = "mypy-extensions"
-version = "1.0.0"
-description = "Type system extensions for programs checked with the mypy type checker."
-optional = false
-python-versions = ">=3.5"
-files = [
- {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"},
- {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"},
-]
-
-[[package]]
-name = "networkx"
-version = "3.2.1"
-description = "Python package for creating and manipulating graphs and networks"
-optional = false
-python-versions = ">=3.9"
-files = [
- {file = "networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2"},
- {file = "networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6"},
-]
-
-[package.extras]
-default = ["matplotlib (>=3.5)", "numpy (>=1.22)", "pandas (>=1.4)", "scipy (>=1.9,!=1.11.0,!=1.11.1)"]
-developer = ["changelist (==0.4)", "mypy (>=1.1)", "pre-commit (>=3.2)", "rtoml"]
-doc = ["nb2plots (>=0.7)", "nbconvert (<7.9)", "numpydoc (>=1.6)", "pillow (>=9.4)", "pydata-sphinx-theme (>=0.14)", "sphinx (>=7)", "sphinx-gallery (>=0.14)", "texext (>=0.6.7)"]
-extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.11)", "sympy (>=1.10)"]
-test = ["pytest (>=7.2)", "pytest-cov (>=4.0)"]
-
-[[package]]
-name = "nodeenv"
-version = "1.8.0"
-description = "Node.js virtual environment builder"
-optional = false
-python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*"
-files = [
- {file = "nodeenv-1.8.0-py2.py3-none-any.whl", hash = "sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec"},
- {file = "nodeenv-1.8.0.tar.gz", hash = "sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2"},
-]
-
-[package.dependencies]
-setuptools = "*"
-
-[[package]]
-name = "numba"
-version = "0.59.1"
-description = "compiling Python code using LLVM"
-optional = false
-python-versions = ">=3.9"
-files = [
- {file = "numba-0.59.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:97385a7f12212c4f4bc28f648720a92514bee79d7063e40ef66c2d30600fd18e"},
- {file = "numba-0.59.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0b77aecf52040de2a1eb1d7e314497b9e56fba17466c80b457b971a25bb1576d"},
- {file = "numba-0.59.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3476a4f641bfd58f35ead42f4dcaf5f132569c4647c6f1360ccf18ee4cda3990"},
- {file = "numba-0.59.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:525ef3f820931bdae95ee5379c670d5c97289c6520726bc6937a4a7d4230ba24"},
- {file = "numba-0.59.1-cp310-cp310-win_amd64.whl", hash = "sha256:990e395e44d192a12105eca3083b61307db7da10e093972ca285c85bef0963d6"},
- {file = "numba-0.59.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:43727e7ad20b3ec23ee4fc642f5b61845c71f75dd2825b3c234390c6d8d64051"},
- {file = "numba-0.59.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:411df625372c77959570050e861981e9d196cc1da9aa62c3d6a836b5cc338966"},
- {file = "numba-0.59.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2801003caa263d1e8497fb84829a7ecfb61738a95f62bc05693fcf1733e978e4"},
- {file = "numba-0.59.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:dd2842fac03be4e5324ebbbd4d2d0c8c0fc6e0df75c09477dd45b288a0777389"},
- {file = "numba-0.59.1-cp311-cp311-win_amd64.whl", hash = "sha256:0594b3dfb369fada1f8bb2e3045cd6c61a564c62e50cf1f86b4666bc721b3450"},
- {file = "numba-0.59.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1cce206a3b92836cdf26ef39d3a3242fec25e07f020cc4feec4c4a865e340569"},
- {file = "numba-0.59.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8c8b4477763cb1fbd86a3be7050500229417bf60867c93e131fd2626edb02238"},
- {file = "numba-0.59.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7d80bce4ef7e65bf895c29e3889ca75a29ee01da80266a01d34815918e365835"},
- {file = "numba-0.59.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f7ad1d217773e89a9845886401eaaab0a156a90aa2f179fdc125261fd1105096"},
- {file = "numba-0.59.1-cp312-cp312-win_amd64.whl", hash = "sha256:5bf68f4d69dd3a9f26a9b23548fa23e3bcb9042e2935257b471d2a8d3c424b7f"},
- {file = "numba-0.59.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4e0318ae729de6e5dbe64c75ead1a95eb01fabfe0e2ebed81ebf0344d32db0ae"},
- {file = "numba-0.59.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0f68589740a8c38bb7dc1b938b55d1145244c8353078eea23895d4f82c8b9ec1"},
- {file = "numba-0.59.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:649913a3758891c77c32e2d2a3bcbedf4a69f5fea276d11f9119677c45a422e8"},
- {file = "numba-0.59.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:9712808e4545270291d76b9a264839ac878c5eb7d8b6e02c970dc0ac29bc8187"},
- {file = "numba-0.59.1-cp39-cp39-win_amd64.whl", hash = "sha256:8d51ccd7008a83105ad6a0082b6a2b70f1142dc7cfd76deb8c5a862367eb8c86"},
- {file = "numba-0.59.1.tar.gz", hash = "sha256:76f69132b96028d2774ed20415e8c528a34e3299a40581bae178f0994a2f370b"},
-]
-
-[package.dependencies]
-llvmlite = "==0.42.*"
-numpy = ">=1.22,<1.27"
-
-[[package]]
-name = "numpy"
-version = "1.26.4"
-description = "Fundamental package for array computing in Python"
-optional = false
-python-versions = ">=3.9"
-files = [
- {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"},
- {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"},
- {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"},
- {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"},
- {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"},
- {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"},
- {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"},
- {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"},
- {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"},
- {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"},
- {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"},
- {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"},
- {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"},
- {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"},
- {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"},
- {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"},
- {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"},
- {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"},
- {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"},
- {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"},
- {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"},
- {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"},
- {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"},
- {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"},
- {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"},
- {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"},
- {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"},
- {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"},
- {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"},
- {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"},
- {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"},
- {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"},
- {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"},
- {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"},
- {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"},
- {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"},
-]
-
-[[package]]
-name = "nvidia-cublas-cu12"
-version = "12.1.3.1"
-description = "CUBLAS native runtime libraries"
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:ee53ccca76a6fc08fb9701aa95b6ceb242cdaab118c3bb152af4e579af792728"},
- {file = "nvidia_cublas_cu12-12.1.3.1-py3-none-win_amd64.whl", hash = "sha256:2b964d60e8cf11b5e1073d179d85fa340c120e99b3067558f3cf98dd69d02906"},
-]
-
-[[package]]
-name = "nvidia-cuda-cupti-cu12"
-version = "12.1.105"
-description = "CUDA profiling tools runtime libs."
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:e54fde3983165c624cb79254ae9818a456eb6e87a7fd4d56a2352c24ee542d7e"},
- {file = "nvidia_cuda_cupti_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:bea8236d13a0ac7190bd2919c3e8e6ce1e402104276e6f9694479e48bb0eb2a4"},
-]
-
-[[package]]
-name = "nvidia-cuda-nvrtc-cu12"
-version = "12.1.105"
-description = "NVRTC native runtime libraries"
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:339b385f50c309763ca65456ec75e17bbefcbbf2893f462cb8b90584cd27a1c2"},
- {file = "nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:0a98a522d9ff138b96c010a65e145dc1b4850e9ecb75a0172371793752fd46ed"},
-]
-
-[[package]]
-name = "nvidia-cuda-runtime-cu12"
-version = "12.1.105"
-description = "CUDA Runtime native Libraries"
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:6e258468ddf5796e25f1dc591a31029fa317d97a0a94ed93468fc86301d61e40"},
- {file = "nvidia_cuda_runtime_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:dfb46ef84d73fababab44cf03e3b83f80700d27ca300e537f85f636fac474344"},
-]
-
-[[package]]
-name = "nvidia-cudnn-cu12"
-version = "8.9.2.26"
-description = "cuDNN runtime libraries"
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_cudnn_cu12-8.9.2.26-py3-none-manylinux1_x86_64.whl", hash = "sha256:5ccb288774fdfb07a7e7025ffec286971c06d8d7b4fb162525334616d7629ff9"},
-]
-
-[package.dependencies]
-nvidia-cublas-cu12 = "*"
-
-[[package]]
-name = "nvidia-cufft-cu12"
-version = "11.0.2.54"
-description = "CUFFT native runtime libraries"
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl", hash = "sha256:794e3948a1aa71fd817c3775866943936774d1c14e7628c74f6f7417224cdf56"},
- {file = "nvidia_cufft_cu12-11.0.2.54-py3-none-win_amd64.whl", hash = "sha256:d9ac353f78ff89951da4af698f80870b1534ed69993f10a4cf1d96f21357e253"},
-]
-
-[[package]]
-name = "nvidia-curand-cu12"
-version = "10.3.2.106"
-description = "CURAND native runtime libraries"
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:9d264c5036dde4e64f1de8c50ae753237c12e0b1348738169cd0f8a536c0e1e0"},
- {file = "nvidia_curand_cu12-10.3.2.106-py3-none-win_amd64.whl", hash = "sha256:75b6b0c574c0037839121317e17fd01f8a69fd2ef8e25853d826fec30bdba74a"},
-]
-
-[[package]]
-name = "nvidia-cusolver-cu12"
-version = "11.4.5.107"
-description = "CUDA solver native runtime libraries"
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl", hash = "sha256:8a7ec542f0412294b15072fa7dab71d31334014a69f953004ea7a118206fe0dd"},
- {file = "nvidia_cusolver_cu12-11.4.5.107-py3-none-win_amd64.whl", hash = "sha256:74e0c3a24c78612192a74fcd90dd117f1cf21dea4822e66d89e8ea80e3cd2da5"},
-]
-
-[package.dependencies]
-nvidia-cublas-cu12 = "*"
-nvidia-cusparse-cu12 = "*"
-nvidia-nvjitlink-cu12 = "*"
-
-[[package]]
-name = "nvidia-cusparse-cu12"
-version = "12.1.0.106"
-description = "CUSPARSE native runtime libraries"
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:f3b50f42cf363f86ab21f720998517a659a48131e8d538dc02f8768237bd884c"},
- {file = "nvidia_cusparse_cu12-12.1.0.106-py3-none-win_amd64.whl", hash = "sha256:b798237e81b9719373e8fae8d4f091b70a0cf09d9d85c95a557e11df2d8e9a5a"},
-]
-
-[package.dependencies]
-nvidia-nvjitlink-cu12 = "*"
-
-[[package]]
-name = "nvidia-nccl-cu12"
-version = "2.19.3"
-description = "NVIDIA Collective Communication Library (NCCL) Runtime"
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_nccl_cu12-2.19.3-py3-none-manylinux1_x86_64.whl", hash = "sha256:a9734707a2c96443331c1e48c717024aa6678a0e2a4cb66b2c364d18cee6b48d"},
-]
-
-[[package]]
-name = "nvidia-nvjitlink-cu12"
-version = "12.4.99"
-description = "Nvidia JIT LTO Library"
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_nvjitlink_cu12-12.4.99-py3-none-manylinux2014_aarch64.whl", hash = "sha256:75d6498c96d9adb9435f2bbdbddb479805ddfb97b5c1b32395c694185c20ca57"},
- {file = "nvidia_nvjitlink_cu12-12.4.99-py3-none-manylinux2014_x86_64.whl", hash = "sha256:c6428836d20fe7e327191c175791d38570e10762edc588fb46749217cd444c74"},
- {file = "nvidia_nvjitlink_cu12-12.4.99-py3-none-win_amd64.whl", hash = "sha256:991905ffa2144cb603d8ca7962d75c35334ae82bf92820b6ba78157277da1ad2"},
-]
-
-[[package]]
-name = "nvidia-nvtx-cu12"
-version = "12.1.105"
-description = "NVIDIA Tools Extension"
-optional = false
-python-versions = ">=3"
-files = [
- {file = "nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:dc21cf308ca5691e7c04d962e213f8a4aa9bbfa23d95412f452254c2caeb09e5"},
- {file = "nvidia_nvtx_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:65f4d98982b31b60026e0e6de73fbdfc09d08a96f4656dd3665ca616a11e1e82"},
-]
-
-[[package]]
-name = "onnxruntime"
-version = "1.17.1"
-description = "ONNX Runtime is a runtime accelerator for Machine Learning models"
-optional = false
-python-versions = "*"
-files = [
- {file = "onnxruntime-1.17.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d43ac17ac4fa3c9096ad3c0e5255bb41fd134560212dc124e7f52c3159af5d21"},
- {file = "onnxruntime-1.17.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:55b5e92a4c76a23981c998078b9bf6145e4fb0b016321a8274b1607bd3c6bd35"},
- {file = "onnxruntime-1.17.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ebbcd2bc3a066cf54e6f18c75708eb4d309ef42be54606d22e5bdd78afc5b0d7"},
- {file = "onnxruntime-1.17.1-cp310-cp310-win32.whl", hash = "sha256:5e3716b5eec9092e29a8d17aab55e737480487deabfca7eac3cd3ed952b6ada9"},
- {file = "onnxruntime-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:fbb98cced6782ae1bb799cc74ddcbbeeae8819f3ad1d942a74d88e72b6511337"},
- {file = "onnxruntime-1.17.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:36fd6f87a1ecad87e9c652e42407a50fb305374f9a31d71293eb231caae18784"},
- {file = "onnxruntime-1.17.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:99a8bddeb538edabc524d468edb60ad4722cff8a49d66f4e280c39eace70500b"},
- {file = "onnxruntime-1.17.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fd7fddb4311deb5a7d3390cd8e9b3912d4d963efbe4dfe075edbaf18d01c024e"},
- {file = "onnxruntime-1.17.1-cp311-cp311-win32.whl", hash = "sha256:606a7cbfb6680202b0e4f1890881041ffc3ac6e41760a25763bd9fe146f0b335"},
- {file = "onnxruntime-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:53e4e06c0a541696ebdf96085fd9390304b7b04b748a19e02cf3b35c869a1e76"},
- {file = "onnxruntime-1.17.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:40f08e378e0f85929712a2b2c9b9a9cc400a90c8a8ca741d1d92c00abec60843"},
- {file = "onnxruntime-1.17.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ac79da6d3e1bb4590f1dad4bb3c2979d7228555f92bb39820889af8b8e6bd472"},
- {file = "onnxruntime-1.17.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ae9ba47dc099004e3781f2d0814ad710a13c868c739ab086fc697524061695ea"},
- {file = "onnxruntime-1.17.1-cp312-cp312-win32.whl", hash = "sha256:2dff1a24354220ac30e4a4ce2fb1df38cb1ea59f7dac2c116238d63fe7f4c5ff"},
- {file = "onnxruntime-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:6226a5201ab8cafb15e12e72ff2a4fc8f50654e8fa5737c6f0bd57c5ff66827e"},
- {file = "onnxruntime-1.17.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:cd0c07c0d1dfb8629e820b05fda5739e4835b3b82faf43753d2998edf2cf00aa"},
- {file = "onnxruntime-1.17.1-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:617ebdf49184efa1ba6e4467e602fbfa029ed52c92f13ce3c9f417d303006381"},
- {file = "onnxruntime-1.17.1-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9dae9071e3facdf2920769dceee03b71c684b6439021defa45b830d05e148924"},
- {file = "onnxruntime-1.17.1-cp38-cp38-win32.whl", hash = "sha256:835d38fa1064841679433b1aa8138b5e1218ddf0cfa7a3ae0d056d8fd9cec713"},
- {file = "onnxruntime-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:96621e0c555c2453bf607606d08af3f70fbf6f315230c28ddea91754e17ad4e6"},
- {file = "onnxruntime-1.17.1-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:7a9539935fb2d78ebf2cf2693cad02d9930b0fb23cdd5cf37a7df813e977674d"},
- {file = "onnxruntime-1.17.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:45c6a384e9d9a29c78afff62032a46a993c477b280247a7e335df09372aedbe9"},
- {file = "onnxruntime-1.17.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4e19f966450f16863a1d6182a685ca33ae04d7772a76132303852d05b95411ea"},
- {file = "onnxruntime-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e2ae712d64a42aac29ed7a40a426cb1e624a08cfe9273dcfe681614aa65b07dc"},
- {file = "onnxruntime-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:f7e9f7fb049825cdddf4a923cfc7c649d84d63c0134315f8e0aa9e0c3004672c"},
-]
-
-[package.dependencies]
-coloredlogs = "*"
-flatbuffers = "*"
-numpy = ">=1.21.6"
-packaging = "*"
-protobuf = "*"
-sympy = "*"
-
-[[package]]
-name = "openai"
-version = "1.14.2"
-description = "The official Python library for the openai API"
-optional = false
-python-versions = ">=3.7.1"
-files = [
- {file = "openai-1.14.2-py3-none-any.whl", hash = "sha256:a48b3c4d635b603952189ac5a0c0c9b06c025b80eb2900396939f02bb2104ac3"},
- {file = "openai-1.14.2.tar.gz", hash = "sha256:e5642f7c02cf21994b08477d7bb2c1e46d8f335d72c26f0396c5f89b15b5b153"},
-]
-
-[package.dependencies]
-anyio = ">=3.5.0,<5"
-distro = ">=1.7.0,<2"
-httpx = ">=0.23.0,<1"
-pydantic = ">=1.9.0,<3"
-sniffio = "*"
-tqdm = ">4"
-typing-extensions = ">=4.7,<5"
-
-[package.extras]
-datalib = ["numpy (>=1)", "pandas (>=1.2.3)", "pandas-stubs (>=1.1.0.11)"]
-
-[[package]]
-name = "openai-whisper"
-version = "20240930"
-description = "Robust Speech Recognition via Large-Scale Weak Supervision"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "openai-whisper-20240930.tar.gz", hash = "sha256:b7178e9c1615576807a300024f4daa6353f7e1a815dac5e38c33f1ef055dd2d2"},
-]
-
-[package.dependencies]
-more-itertools = "*"
-numba = "*"
-numpy = "*"
-tiktoken = "*"
-torch = "*"
-tqdm = "*"
-triton = {version = ">=2.0.0", markers = "platform_machine == \"x86_64\" and sys_platform == \"linux\" or sys_platform == \"linux2\""}
-
-[package.extras]
-dev = ["black", "flake8", "isort", "pytest", "scipy"]
-
-[[package]]
-name = "packaging"
-version = "24.0"
-description = "Core utilities for Python packages"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "packaging-24.0-py3-none-any.whl", hash = "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5"},
- {file = "packaging-24.0.tar.gz", hash = "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9"},
-]
-
-[[package]]
-name = "pefile"
-version = "2023.2.7"
-description = "Python PE parsing module"
-optional = false
-python-versions = ">=3.6.0"
-files = [
- {file = "pefile-2023.2.7-py3-none-any.whl", hash = "sha256:da185cd2af68c08a6cd4481f7325ed600a88f6a813bad9dea07ab3ef73d8d8d6"},
- {file = "pefile-2023.2.7.tar.gz", hash = "sha256:82e6114004b3d6911c77c3953e3838654b04511b8b66e8583db70c65998017dc"},
-]
-
-[[package]]
-name = "platformdirs"
-version = "4.2.0"
-description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "platformdirs-4.2.0-py3-none-any.whl", hash = "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068"},
- {file = "platformdirs-4.2.0.tar.gz", hash = "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768"},
-]
-
-[package.extras]
-docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"]
-test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"]
-
-[[package]]
-name = "pluggy"
-version = "1.4.0"
-description = "plugin and hook calling mechanisms for python"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "pluggy-1.4.0-py3-none-any.whl", hash = "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981"},
- {file = "pluggy-1.4.0.tar.gz", hash = "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be"},
-]
-
-[package.extras]
-dev = ["pre-commit", "tox"]
-testing = ["pytest", "pytest-benchmark"]
-
-[[package]]
-name = "polib"
-version = "1.2.0"
-description = "A library to manipulate gettext files (po and mo files)."
-optional = false
-python-versions = "*"
-files = [
- {file = "polib-1.2.0-py2.py3-none-any.whl", hash = "sha256:1c77ee1b81feb31df9bca258cbc58db1bbb32d10214b173882452c73af06d62d"},
- {file = "polib-1.2.0.tar.gz", hash = "sha256:f3ef94aefed6e183e342a8a269ae1fc4742ba193186ad76f175938621dbfc26b"},
-]
-
-[[package]]
-name = "pre-commit"
-version = "2.21.0"
-description = "A framework for managing and maintaining multi-language pre-commit hooks."
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "pre_commit-2.21.0-py2.py3-none-any.whl", hash = "sha256:e2f91727039fc39a92f58a588a25b87f936de6567eed4f0e673e0507edc75bad"},
- {file = "pre_commit-2.21.0.tar.gz", hash = "sha256:31ef31af7e474a8d8995027fefdfcf509b5c913ff31f2015b4ec4beb26a6f658"},
-]
-
-[package.dependencies]
-cfgv = ">=2.0.0"
-identify = ">=1.0.0"
-nodeenv = ">=0.11.1"
-pyyaml = ">=5.1"
-virtualenv = ">=20.10.0"
-
-[[package]]
-name = "protobuf"
-version = "5.26.0"
-description = ""
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "protobuf-5.26.0-cp310-abi3-win32.whl", hash = "sha256:f9ecc8eb6f18037e0cbf43256db0325d4723f429bca7ef5cd358b7c29d65f628"},
- {file = "protobuf-5.26.0-cp310-abi3-win_amd64.whl", hash = "sha256:dfd29f6eb34107dccf289a93d44fb6b131e68888d090b784b691775ac84e8213"},
- {file = "protobuf-5.26.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:7e47c57303466c867374a17b2b5e99c5a7c8b72a94118e2f28efb599f19b4069"},
- {file = "protobuf-5.26.0-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:e184175276edc222e2d5e314a72521e10049938a9a4961fe4bea9b25d073c03f"},
- {file = "protobuf-5.26.0-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:6ee9d1aa02f951c5ce10bf8c6cfb7604133773038e33f913183c8b5201350600"},
- {file = "protobuf-5.26.0-cp38-cp38-win32.whl", hash = "sha256:2c334550e1cb4efac5c8a3987384bf13a4334abaf5ab59e40479e7b70ecd6b19"},
- {file = "protobuf-5.26.0-cp38-cp38-win_amd64.whl", hash = "sha256:8eef61a90631c21b06b4f492a27e199a269827f046de3bb68b61aa84fcf50905"},
- {file = "protobuf-5.26.0-cp39-cp39-win32.whl", hash = "sha256:ca825f4eecb8c342d2ec581e6a5ad1ad1a47bededaecd768e0d3451ae4aaac2b"},
- {file = "protobuf-5.26.0-cp39-cp39-win_amd64.whl", hash = "sha256:efd4f5894c50bd76cbcfdd668cd941021333861ed0f441c78a83d8254a01cc9f"},
- {file = "protobuf-5.26.0-py3-none-any.whl", hash = "sha256:a49b6c5359bf34fb7bf965bf21abfab4476e4527d822ab5289ee3bf73f291159"},
- {file = "protobuf-5.26.0.tar.gz", hash = "sha256:82f5870d74c99addfe4152777bdf8168244b9cf0ac65f8eccf045ddfa9d80d9b"},
-]
-
-[[package]]
-name = "psutil"
-version = "6.1.0"
-description = "Cross-platform lib for process and system monitoring in Python."
-optional = false
-python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7"
-files = [
- {file = "psutil-6.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ff34df86226c0227c52f38b919213157588a678d049688eded74c76c8ba4a5d0"},
- {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c0e0c00aa18ca2d3b2b991643b799a15fc8f0563d2ebb6040f64ce8dc027b942"},
- {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:000d1d1ebd634b4efb383f4034437384e44a6d455260aaee2eca1e9c1b55f047"},
- {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5cd2bcdc75b452ba2e10f0e8ecc0b57b827dd5d7aaffbc6821b2a9a242823a76"},
- {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:045f00a43c737f960d273a83973b2511430d61f283a44c96bf13a6e829ba8fdc"},
- {file = "psutil-6.1.0-cp27-none-win32.whl", hash = "sha256:9118f27452b70bb1d9ab3198c1f626c2499384935aaf55388211ad982611407e"},
- {file = "psutil-6.1.0-cp27-none-win_amd64.whl", hash = "sha256:a8506f6119cff7015678e2bce904a4da21025cc70ad283a53b099e7620061d85"},
- {file = "psutil-6.1.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6e2dcd475ce8b80522e51d923d10c7871e45f20918e027ab682f94f1c6351688"},
- {file = "psutil-6.1.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0895b8414afafc526712c498bd9de2b063deaac4021a3b3c34566283464aff8e"},
- {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9dcbfce5d89f1d1f2546a2090f4fcf87c7f669d1d90aacb7d7582addece9fb38"},
- {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:498c6979f9c6637ebc3a73b3f87f9eb1ec24e1ce53a7c5173b8508981614a90b"},
- {file = "psutil-6.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d905186d647b16755a800e7263d43df08b790d709d575105d419f8b6ef65423a"},
- {file = "psutil-6.1.0-cp36-cp36m-win32.whl", hash = "sha256:6d3fbbc8d23fcdcb500d2c9f94e07b1342df8ed71b948a2649b5cb060a7c94ca"},
- {file = "psutil-6.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1209036fbd0421afde505a4879dee3b2fd7b1e14fee81c0069807adcbbcca747"},
- {file = "psutil-6.1.0-cp37-abi3-win32.whl", hash = "sha256:1ad45a1f5d0b608253b11508f80940985d1d0c8f6111b5cb637533a0e6ddc13e"},
- {file = "psutil-6.1.0-cp37-abi3-win_amd64.whl", hash = "sha256:a8fb3752b491d246034fa4d279ff076501588ce8cbcdbb62c32fd7a377d996be"},
- {file = "psutil-6.1.0.tar.gz", hash = "sha256:353815f59a7f64cdaca1c0307ee13558a0512f6db064e92fe833784f08539c7a"},
-]
-
-[package.extras]
-dev = ["black", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest-cov", "requests", "rstcheck", "ruff", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "wheel"]
-test = ["pytest", "pytest-xdist", "setuptools"]
-
-[[package]]
-name = "py-cpuinfo"
-version = "9.0.0"
-description = "Get CPU info with pure Python"
-optional = false
-python-versions = "*"
-files = [
- {file = "py-cpuinfo-9.0.0.tar.gz", hash = "sha256:3cdbbf3fac90dc6f118bfd64384f309edeadd902d7c8fb17f02ffa1fc3f49690"},
- {file = "py_cpuinfo-9.0.0-py3-none-any.whl", hash = "sha256:859625bc251f64e21f077d099d4162689c762b5d6a4c3c97553d56241c9674d5"},
-]
-
-[[package]]
-name = "pycodestyle"
-version = "2.11.1"
-description = "Python style guide checker"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "pycodestyle-2.11.1-py2.py3-none-any.whl", hash = "sha256:44fe31000b2d866f2e41841b18528a505fbd7fef9017b04eff4e2648a0fadc67"},
- {file = "pycodestyle-2.11.1.tar.gz", hash = "sha256:41ba0e7afc9752dfb53ced5489e89f8186be00e599e712660695b7a75ff2663f"},
-]
-
-[[package]]
-name = "pycparser"
-version = "2.21"
-description = "C parser in Python"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
-files = [
- {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
- {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
-]
-
-[[package]]
-name = "pycryptodomex"
-version = "3.20.0"
-description = "Cryptographic library for Python"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
-files = [
- {file = "pycryptodomex-3.20.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:645bd4ca6f543685d643dadf6a856cc382b654cc923460e3a10a49c1b3832aeb"},
- {file = "pycryptodomex-3.20.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ff5c9a67f8a4fba4aed887216e32cbc48f2a6fb2673bb10a99e43be463e15913"},
- {file = "pycryptodomex-3.20.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:8ee606964553c1a0bc74057dd8782a37d1c2bc0f01b83193b6f8bb14523b877b"},
- {file = "pycryptodomex-3.20.0-cp27-cp27m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7805830e0c56d88f4d491fa5ac640dfc894c5ec570d1ece6ed1546e9df2e98d6"},
- {file = "pycryptodomex-3.20.0-cp27-cp27m-musllinux_1_1_aarch64.whl", hash = "sha256:bc3ee1b4d97081260d92ae813a83de4d2653206967c4a0a017580f8b9548ddbc"},
- {file = "pycryptodomex-3.20.0-cp27-cp27m-win32.whl", hash = "sha256:8af1a451ff9e123d0d8bd5d5e60f8e3315c3a64f3cdd6bc853e26090e195cdc8"},
- {file = "pycryptodomex-3.20.0-cp27-cp27m-win_amd64.whl", hash = "sha256:cbe71b6712429650e3883dc81286edb94c328ffcd24849accac0a4dbcc76958a"},
- {file = "pycryptodomex-3.20.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:76bd15bb65c14900d98835fcd10f59e5e0435077431d3a394b60b15864fddd64"},
- {file = "pycryptodomex-3.20.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:653b29b0819605fe0898829c8ad6400a6ccde096146730c2da54eede9b7b8baa"},
- {file = "pycryptodomex-3.20.0-cp27-cp27mu-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62a5ec91388984909bb5398ea49ee61b68ecb579123694bffa172c3b0a107079"},
- {file = "pycryptodomex-3.20.0-cp27-cp27mu-musllinux_1_1_aarch64.whl", hash = "sha256:108e5f1c1cd70ffce0b68739c75734437c919d2eaec8e85bffc2c8b4d2794305"},
- {file = "pycryptodomex-3.20.0-cp35-abi3-macosx_10_9_universal2.whl", hash = "sha256:59af01efb011b0e8b686ba7758d59cf4a8263f9ad35911bfe3f416cee4f5c08c"},
- {file = "pycryptodomex-3.20.0-cp35-abi3-macosx_10_9_x86_64.whl", hash = "sha256:82ee7696ed8eb9a82c7037f32ba9b7c59e51dda6f105b39f043b6ef293989cb3"},
- {file = "pycryptodomex-3.20.0-cp35-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91852d4480a4537d169c29a9d104dda44094c78f1f5b67bca76c29a91042b623"},
- {file = "pycryptodomex-3.20.0-cp35-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca649483d5ed251d06daf25957f802e44e6bb6df2e8f218ae71968ff8f8edc4"},
- {file = "pycryptodomex-3.20.0-cp35-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e186342cfcc3aafaad565cbd496060e5a614b441cacc3995ef0091115c1f6c5"},
- {file = "pycryptodomex-3.20.0-cp35-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:25cd61e846aaab76d5791d006497134602a9e451e954833018161befc3b5b9ed"},
- {file = "pycryptodomex-3.20.0-cp35-abi3-musllinux_1_1_i686.whl", hash = "sha256:9c682436c359b5ada67e882fec34689726a09c461efd75b6ea77b2403d5665b7"},
- {file = "pycryptodomex-3.20.0-cp35-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:7a7a8f33a1f1fb762ede6cc9cbab8f2a9ba13b196bfaf7bc6f0b39d2ba315a43"},
- {file = "pycryptodomex-3.20.0-cp35-abi3-win32.whl", hash = "sha256:c39778fd0548d78917b61f03c1fa8bfda6cfcf98c767decf360945fe6f97461e"},
- {file = "pycryptodomex-3.20.0-cp35-abi3-win_amd64.whl", hash = "sha256:2a47bcc478741b71273b917232f521fd5704ab4b25d301669879e7273d3586cc"},
- {file = "pycryptodomex-3.20.0-pp27-pypy_73-manylinux2010_x86_64.whl", hash = "sha256:1be97461c439a6af4fe1cf8bf6ca5936d3db252737d2f379cc6b2e394e12a458"},
- {file = "pycryptodomex-3.20.0-pp27-pypy_73-win32.whl", hash = "sha256:19764605feea0df966445d46533729b645033f134baeb3ea26ad518c9fdf212c"},
- {file = "pycryptodomex-3.20.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f2e497413560e03421484189a6b65e33fe800d3bd75590e6d78d4dfdb7accf3b"},
- {file = "pycryptodomex-3.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e48217c7901edd95f9f097feaa0388da215ed14ce2ece803d3f300b4e694abea"},
- {file = "pycryptodomex-3.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d00fe8596e1cc46b44bf3907354e9377aa030ec4cd04afbbf6e899fc1e2a7781"},
- {file = "pycryptodomex-3.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:88afd7a3af7ddddd42c2deda43d53d3dfc016c11327d0915f90ca34ebda91499"},
- {file = "pycryptodomex-3.20.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d3584623e68a5064a04748fb6d76117a21a7cb5eaba20608a41c7d0c61721794"},
- {file = "pycryptodomex-3.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0daad007b685db36d977f9de73f61f8da2a7104e20aca3effd30752fd56f73e1"},
- {file = "pycryptodomex-3.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5dcac11031a71348faaed1f403a0debd56bf5404232284cf8c761ff918886ebc"},
- {file = "pycryptodomex-3.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:69138068268127cd605e03438312d8f271135a33140e2742b417d027a0539427"},
- {file = "pycryptodomex-3.20.0.tar.gz", hash = "sha256:7a710b79baddd65b806402e14766c721aee8fb83381769c27920f26476276c1e"},
-]
-
-[[package]]
-name = "pydantic"
-version = "2.6.4"
-description = "Data validation using Python type hints"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "pydantic-2.6.4-py3-none-any.whl", hash = "sha256:cc46fce86607580867bdc3361ad462bab9c222ef042d3da86f2fb333e1d916c5"},
- {file = "pydantic-2.6.4.tar.gz", hash = "sha256:b1704e0847db01817624a6b86766967f552dd9dbf3afba4004409f908dcc84e6"},
-]
-
-[package.dependencies]
-annotated-types = ">=0.4.0"
-pydantic-core = "2.16.3"
-typing-extensions = ">=4.6.1"
-
-[package.extras]
-email = ["email-validator (>=2.0.0)"]
-
-[[package]]
-name = "pydantic-core"
-version = "2.16.3"
-description = ""
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "pydantic_core-2.16.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:75b81e678d1c1ede0785c7f46690621e4c6e63ccd9192af1f0bd9d504bbb6bf4"},
- {file = "pydantic_core-2.16.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9c865a7ee6f93783bd5d781af5a4c43dadc37053a5b42f7d18dc019f8c9d2bd1"},
- {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:162e498303d2b1c036b957a1278fa0899d02b2842f1ff901b6395104c5554a45"},
- {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f583bd01bbfbff4eaee0868e6fc607efdfcc2b03c1c766b06a707abbc856187"},
- {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b926dd38db1519ed3043a4de50214e0d600d404099c3392f098a7f9d75029ff8"},
- {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:716b542728d4c742353448765aa7cdaa519a7b82f9564130e2b3f6766018c9ec"},
- {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc4ad7f7ee1a13d9cb49d8198cd7d7e3aa93e425f371a68235f784e99741561f"},
- {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bd87f48924f360e5d1c5f770d6155ce0e7d83f7b4e10c2f9ec001c73cf475c99"},
- {file = "pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0df446663464884297c793874573549229f9eca73b59360878f382a0fc085979"},
- {file = "pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4df8a199d9f6afc5ae9a65f8f95ee52cae389a8c6b20163762bde0426275b7db"},
- {file = "pydantic_core-2.16.3-cp310-none-win32.whl", hash = "sha256:456855f57b413f077dff513a5a28ed838dbbb15082ba00f80750377eed23d132"},
- {file = "pydantic_core-2.16.3-cp310-none-win_amd64.whl", hash = "sha256:732da3243e1b8d3eab8c6ae23ae6a58548849d2e4a4e03a1924c8ddf71a387cb"},
- {file = "pydantic_core-2.16.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:519ae0312616026bf4cedc0fe459e982734f3ca82ee8c7246c19b650b60a5ee4"},
- {file = "pydantic_core-2.16.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b3992a322a5617ded0a9f23fd06dbc1e4bd7cf39bc4ccf344b10f80af58beacd"},
- {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d62da299c6ecb04df729e4b5c52dc0d53f4f8430b4492b93aa8de1f541c4aac"},
- {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2acca2be4bb2f2147ada8cac612f8a98fc09f41c89f87add7256ad27332c2fda"},
- {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1b662180108c55dfbf1280d865b2d116633d436cfc0bba82323554873967b340"},
- {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e7c6ed0dc9d8e65f24f5824291550139fe6f37fac03788d4580da0d33bc00c97"},
- {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6b1bb0827f56654b4437955555dc3aeeebeddc47c2d7ed575477f082622c49e"},
- {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e56f8186d6210ac7ece503193ec84104da7ceb98f68ce18c07282fcc2452e76f"},
- {file = "pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:936e5db01dd49476fa8f4383c259b8b1303d5dd5fb34c97de194560698cc2c5e"},
- {file = "pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:33809aebac276089b78db106ee692bdc9044710e26f24a9a2eaa35a0f9fa70ba"},
- {file = "pydantic_core-2.16.3-cp311-none-win32.whl", hash = "sha256:ded1c35f15c9dea16ead9bffcde9bb5c7c031bff076355dc58dcb1cb436c4721"},
- {file = "pydantic_core-2.16.3-cp311-none-win_amd64.whl", hash = "sha256:d89ca19cdd0dd5f31606a9329e309d4fcbb3df860960acec32630297d61820df"},
- {file = "pydantic_core-2.16.3-cp311-none-win_arm64.whl", hash = "sha256:6162f8d2dc27ba21027f261e4fa26f8bcb3cf9784b7f9499466a311ac284b5b9"},
- {file = "pydantic_core-2.16.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:0f56ae86b60ea987ae8bcd6654a887238fd53d1384f9b222ac457070b7ac4cff"},
- {file = "pydantic_core-2.16.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9bd22a2a639e26171068f8ebb5400ce2c1bc7d17959f60a3b753ae13c632975"},
- {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4204e773b4b408062960e65468d5346bdfe139247ee5f1ca2a378983e11388a2"},
- {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f651dd19363c632f4abe3480a7c87a9773be27cfe1341aef06e8759599454120"},
- {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf09e615a0bf98d406657e0008e4a8701b11481840be7d31755dc9f97c44053"},
- {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8e47755d8152c1ab5b55928ab422a76e2e7b22b5ed8e90a7d584268dd49e9c6b"},
- {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:500960cb3a0543a724a81ba859da816e8cf01b0e6aaeedf2c3775d12ee49cade"},
- {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cf6204fe865da605285c34cf1172879d0314ff267b1c35ff59de7154f35fdc2e"},
- {file = "pydantic_core-2.16.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d33dd21f572545649f90c38c227cc8631268ba25c460b5569abebdd0ec5974ca"},
- {file = "pydantic_core-2.16.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49d5d58abd4b83fb8ce763be7794d09b2f50f10aa65c0f0c1696c677edeb7cbf"},
- {file = "pydantic_core-2.16.3-cp312-none-win32.whl", hash = "sha256:f53aace168a2a10582e570b7736cc5bef12cae9cf21775e3eafac597e8551fbe"},
- {file = "pydantic_core-2.16.3-cp312-none-win_amd64.whl", hash = "sha256:0d32576b1de5a30d9a97f300cc6a3f4694c428d956adbc7e6e2f9cad279e45ed"},
- {file = "pydantic_core-2.16.3-cp312-none-win_arm64.whl", hash = "sha256:ec08be75bb268473677edb83ba71e7e74b43c008e4a7b1907c6d57e940bf34b6"},
- {file = "pydantic_core-2.16.3-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:b1f6f5938d63c6139860f044e2538baeee6f0b251a1816e7adb6cbce106a1f01"},
- {file = "pydantic_core-2.16.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2a1ef6a36fdbf71538142ed604ad19b82f67b05749512e47f247a6ddd06afdc7"},
- {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:704d35ecc7e9c31d48926150afada60401c55efa3b46cd1ded5a01bdffaf1d48"},
- {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d937653a696465677ed583124b94a4b2d79f5e30b2c46115a68e482c6a591c8a"},
- {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9803edf8e29bd825f43481f19c37f50d2b01899448273b3a7758441b512acf8"},
- {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:72282ad4892a9fb2da25defeac8c2e84352c108705c972db82ab121d15f14e6d"},
- {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f752826b5b8361193df55afcdf8ca6a57d0232653494ba473630a83ba50d8c9"},
- {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4384a8f68ddb31a0b0c3deae88765f5868a1b9148939c3f4121233314ad5532c"},
- {file = "pydantic_core-2.16.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a4b2bf78342c40b3dc830880106f54328928ff03e357935ad26c7128bbd66ce8"},
- {file = "pydantic_core-2.16.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:13dcc4802961b5f843a9385fc821a0b0135e8c07fc3d9949fd49627c1a5e6ae5"},
- {file = "pydantic_core-2.16.3-cp38-none-win32.whl", hash = "sha256:e3e70c94a0c3841e6aa831edab1619ad5c511199be94d0c11ba75fe06efe107a"},
- {file = "pydantic_core-2.16.3-cp38-none-win_amd64.whl", hash = "sha256:ecdf6bf5f578615f2e985a5e1f6572e23aa632c4bd1dc67f8f406d445ac115ed"},
- {file = "pydantic_core-2.16.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:bda1ee3e08252b8d41fa5537413ffdddd58fa73107171a126d3b9ff001b9b820"},
- {file = "pydantic_core-2.16.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:21b888c973e4f26b7a96491c0965a8a312e13be108022ee510248fe379a5fa23"},
- {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be0ec334369316fa73448cc8c982c01e5d2a81c95969d58b8f6e272884df0074"},
- {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b5b6079cc452a7c53dd378c6f881ac528246b3ac9aae0f8eef98498a75657805"},
- {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ee8d5f878dccb6d499ba4d30d757111847b6849ae07acdd1205fffa1fc1253c"},
- {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7233d65d9d651242a68801159763d09e9ec96e8a158dbf118dc090cd77a104c9"},
- {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c6119dc90483a5cb50a1306adb8d52c66e447da88ea44f323e0ae1a5fcb14256"},
- {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:578114bc803a4c1ff9946d977c221e4376620a46cf78da267d946397dc9514a8"},
- {file = "pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d8f99b147ff3fcf6b3cc60cb0c39ea443884d5559a30b1481e92495f2310ff2b"},
- {file = "pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4ac6b4ce1e7283d715c4b729d8f9dab9627586dafce81d9eaa009dd7f25dd972"},
- {file = "pydantic_core-2.16.3-cp39-none-win32.whl", hash = "sha256:e7774b570e61cb998490c5235740d475413a1f6de823169b4cf94e2fe9e9f6b2"},
- {file = "pydantic_core-2.16.3-cp39-none-win_amd64.whl", hash = "sha256:9091632a25b8b87b9a605ec0e61f241c456e9248bfdcf7abdf344fdb169c81cf"},
- {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:36fa178aacbc277bc6b62a2c3da95226520da4f4e9e206fdf076484363895d2c"},
- {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:dcca5d2bf65c6fb591fff92da03f94cd4f315972f97c21975398bd4bd046854a"},
- {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a72fb9963cba4cd5793854fd12f4cfee731e86df140f59ff52a49b3552db241"},
- {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b60cc1a081f80a2105a59385b92d82278b15d80ebb3adb200542ae165cd7d183"},
- {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cbcc558401de90a746d02ef330c528f2e668c83350f045833543cd57ecead1ad"},
- {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:fee427241c2d9fb7192b658190f9f5fd6dfe41e02f3c1489d2ec1e6a5ab1e04a"},
- {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f4cb85f693044e0f71f394ff76c98ddc1bc0953e48c061725e540396d5c8a2e1"},
- {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b29eeb887aa931c2fcef5aa515d9d176d25006794610c264ddc114c053bf96fe"},
- {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a425479ee40ff021f8216c9d07a6a3b54b31c8267c6e17aa88b70d7ebd0e5e5b"},
- {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5c5cbc703168d1b7a838668998308018a2718c2130595e8e190220238addc96f"},
- {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99b6add4c0b39a513d323d3b93bc173dac663c27b99860dd5bf491b240d26137"},
- {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f76ee558751746d6a38f89d60b6228fa174e5172d143886af0f85aa306fd89"},
- {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:00ee1c97b5364b84cb0bd82e9bbf645d5e2871fb8c58059d158412fee2d33d8a"},
- {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:287073c66748f624be4cef893ef9174e3eb88fe0b8a78dc22e88eca4bc357ca6"},
- {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ed25e1835c00a332cb10c683cd39da96a719ab1dfc08427d476bce41b92531fc"},
- {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:86b3d0033580bd6bbe07590152007275bd7af95f98eaa5bd36f3da219dcd93da"},
- {file = "pydantic_core-2.16.3.tar.gz", hash = "sha256:1cac689f80a3abab2d3c0048b29eea5751114054f032a941a32de4c852c59cad"},
-]
-
-[package.dependencies]
-typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0"
-
-[[package]]
-name = "pyinstaller"
-version = "6.5.0"
-description = "PyInstaller bundles a Python application and all its dependencies into a single package."
-optional = false
-python-versions = "<3.13,>=3.8"
-files = [
- {file = "pyinstaller-6.5.0-py3-none-macosx_10_13_universal2.whl", hash = "sha256:81ec15c0deb8c7a0f95bea85b49eecc2df1bdeaf5fe487a41d97de6b0ad29dff"},
- {file = "pyinstaller-6.5.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:5f432f3fdef053989e0a44134e483131c533dab7637e6afd80c3f7c26e6dbcc9"},
- {file = "pyinstaller-6.5.0-py3-none-manylinux2014_i686.whl", hash = "sha256:6ffd76a0194dac4df5e66dcfccc7b597f3eaa40ef9a3f63548f260aa2c187512"},
- {file = "pyinstaller-6.5.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:a54968df2228f0128607b1dced41bbff94149d459987fb5cd1a41893e9bb85df"},
- {file = "pyinstaller-6.5.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:0dae0edbe6d667b6b0ccd8c97a148f86474a82da7ce582296f9025f4c7242ec6"},
- {file = "pyinstaller-6.5.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:7c76bfcb624803c311fa8fb137e4780d0ec86d11b7d90a8f43f185e2554afdcc"},
- {file = "pyinstaller-6.5.0-py3-none-musllinux_1_1_aarch64.whl", hash = "sha256:6cfee8a74ea2d3a1dc8e99e732a87b314739dc14363778143caac31f8aee9039"},
- {file = "pyinstaller-6.5.0-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:9d828213aea5401bb33a36ca396f8dc76a59a25bce1d76a13c9ad94ba29fbe42"},
- {file = "pyinstaller-6.5.0-py3-none-win32.whl", hash = "sha256:61865eee5e0d8f8252722f6d001baec497b7cee79ebe62c33a6ba86ba0c7010d"},
- {file = "pyinstaller-6.5.0-py3-none-win_amd64.whl", hash = "sha256:e1266498893ce1d6cc7337e8d2acbf7905a10ed2b7c8377270117d6b7b922fc4"},
- {file = "pyinstaller-6.5.0-py3-none-win_arm64.whl", hash = "sha256:1b3b7d6d3b18d76a833fd5a4d7f4544c5e2c2a4db4a728ea191e62f69d5cc33c"},
- {file = "pyinstaller-6.5.0.tar.gz", hash = "sha256:b1e55113c5a40cb7041c908a57f212f3ebd3e444dbb245ca2f91d86a76dabec5"},
-]
-
-[package.dependencies]
-altgraph = "*"
-importlib-metadata = {version = ">=4.6", markers = "python_version < \"3.10\""}
-macholib = {version = ">=1.8", markers = "sys_platform == \"darwin\""}
-packaging = ">=22.0"
-pefile = {version = ">=2022.5.30", markers = "sys_platform == \"win32\""}
-pyinstaller-hooks-contrib = ">=2024.3"
-pywin32-ctypes = {version = ">=0.2.1", markers = "sys_platform == \"win32\""}
-setuptools = ">=42.0.0"
-
-[package.extras]
-completion = ["argcomplete"]
-hook-testing = ["execnet (>=1.5.0)", "psutil", "pytest (>=2.7.3)"]
-
-[[package]]
-name = "pyinstaller-hooks-contrib"
-version = "2024.3"
-description = "Community maintained hooks for PyInstaller"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "pyinstaller-hooks-contrib-2024.3.tar.gz", hash = "sha256:d18657c29267c63563a96b8fc78db6ba9ae40af6702acb2f8c871df12c75b60b"},
- {file = "pyinstaller_hooks_contrib-2024.3-py2.py3-none-any.whl", hash = "sha256:6701752d525e1f4eda1eaec2c2affc206171e15c7a4e188a152fcf3ed3308024"},
-]
-
-[package.dependencies]
-importlib-metadata = {version = ">=4.6", markers = "python_version < \"3.10\""}
-packaging = ">=22.0"
-setuptools = ">=42.0.0"
-
-[[package]]
-name = "pylint"
-version = "2.17.7"
-description = "python code static checker"
-optional = false
-python-versions = ">=3.7.2"
-files = [
- {file = "pylint-2.17.7-py3-none-any.whl", hash = "sha256:27a8d4c7ddc8c2f8c18aa0050148f89ffc09838142193fdbe98f172781a3ff87"},
- {file = "pylint-2.17.7.tar.gz", hash = "sha256:f4fcac7ae74cfe36bc8451e931d8438e4a476c20314b1101c458ad0f05191fad"},
-]
-
-[package.dependencies]
-astroid = ">=2.15.8,<=2.17.0-dev0"
-colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""}
-dill = [
- {version = ">=0.2", markers = "python_version < \"3.11\""},
- {version = ">=0.3.6", markers = "python_version >= \"3.11\""},
-]
-isort = ">=4.2.5,<6"
-mccabe = ">=0.6,<0.8"
-platformdirs = ">=2.2.0"
-tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
-tomlkit = ">=0.10.1"
-typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""}
-
-[package.extras]
-spelling = ["pyenchant (>=3.2,<4.0)"]
-testutils = ["gitpython (>3)"]
-
-[[package]]
-name = "pyqt6"
-version = "6.6.1"
-description = "Python bindings for the Qt cross platform application toolkit"
-optional = false
-python-versions = ">=3.6.1"
-files = [
- {file = "PyQt6-6.6.1-cp38-abi3-macosx_10_14_universal2.whl", hash = "sha256:6b43878d0bbbcf8b7de165d305ec0cb87113c8930c92de748a11c473a6db5085"},
- {file = "PyQt6-6.6.1-cp38-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:5aa0e833cb5a79b93813f8181d9f145517dd5a46f4374544bcd1e93a8beec537"},
- {file = "PyQt6-6.6.1-cp38-abi3-win_amd64.whl", hash = "sha256:03a656d5dc5ac31b6a9ad200f7f4f7ef49fa00ad7ce7a991b9bb691617141d12"},
- {file = "PyQt6-6.6.1.tar.gz", hash = "sha256:9f158aa29d205142c56f0f35d07784b8df0be28378d20a97bcda8bd64ffd0379"},
-]
-
-[package.dependencies]
-PyQt6-Qt6 = ">=6.6.0"
-PyQt6-sip = ">=13.6,<14"
-
-[[package]]
-name = "pyqt6-qt6"
-version = "6.6.2"
-description = "The subset of a Qt installation needed by PyQt6."
-optional = false
-python-versions = "*"
-files = [
- {file = "PyQt6_Qt6-6.6.2-py3-none-macosx_10_14_x86_64.whl", hash = "sha256:7ef446d3ffc678a8586ff6dc9f0d27caf4dff05dea02c353540d2f614386faf9"},
- {file = "PyQt6_Qt6-6.6.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:b8363d88623342a72ac17da9127dc12f259bb3148796ea029762aa2d499778d9"},
- {file = "PyQt6_Qt6-6.6.2-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:8d7f674a4ec43ca00191e14945ca4129acbe37a2172ed9d08214ad58b170bc11"},
- {file = "PyQt6_Qt6-6.6.2-py3-none-win_amd64.whl", hash = "sha256:5a41fe9d53b9e29e9ec5c23f3c5949dba160f90ca313ee8b96b8ffe6a5059387"},
-]
-
-[[package]]
-name = "pyqt6-sip"
-version = "13.6.0"
-description = "The sip module support for PyQt6"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "PyQt6_sip-13.6.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d6b5f699aaed0ac1fcd23e8fbca70d8a77965831b7c1ce474b81b1678817a49d"},
- {file = "PyQt6_sip-13.6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:8c282062125eea5baf830c6998587d98c50be7c3a817a057fb95fef647184012"},
- {file = "PyQt6_sip-13.6.0-cp310-cp310-win32.whl", hash = "sha256:fa759b6339ff7e25f9afe2a6b651b775f0a36bcb3f5fa85e81a90d3b033c83f4"},
- {file = "PyQt6_sip-13.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:8f9df9f7ccd8a9f0f1d36948c686f03ce1a1281543a3e636b7b7d5e086e1a436"},
- {file = "PyQt6_sip-13.6.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5b9c6b6f9cfccb48cbb78a59603145a698fb4ffd176764d7083e5bf47631d8df"},
- {file = "PyQt6_sip-13.6.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:86a7b67c64436e32bffa9c28c9f21bf14a9faa54991520b12c3f6f435f24df7f"},
- {file = "PyQt6_sip-13.6.0-cp311-cp311-win32.whl", hash = "sha256:58f68a48400e0b3d1ccb18090090299bad26e3aed7ccb7057c65887b79b8aeea"},
- {file = "PyQt6_sip-13.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:0dfd22cfedd87e96f9d51e0778ca2ba3dc0be83e424e9e0f98f6994d8d9c90f0"},
- {file = "PyQt6_sip-13.6.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:3bf03e130fbfd75c9c06e687b86ba375410c7a9e835e4e03285889e61dd4b0c4"},
- {file = "PyQt6_sip-13.6.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:43fb8551796030aae3d66d6e35e277494071ec6172cd182c9569ab7db268a2f5"},
- {file = "PyQt6_sip-13.6.0-cp312-cp312-win32.whl", hash = "sha256:13885361ca2cb2f5085d50359ba61b3fabd41b139fb58f37332acbe631ef2357"},
- {file = "PyQt6_sip-13.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:24441032a29791e82beb7dfd76878339058def0e97fdb7c1cea517f3a0e6e96b"},
- {file = "PyQt6_sip-13.6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3075d8b325382750829e6cde6971c943352309d35768a4d4da0587459606d562"},
- {file = "PyQt6_sip-13.6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:a6ce80bc24618d8a41be8ca51ad9f10e8bc4296dd90ab2809573df30a23ae0e5"},
- {file = "PyQt6_sip-13.6.0-cp38-cp38-win32.whl", hash = "sha256:fa7b10af7488efc5e53b41dd42c0f421bde6c2865a107af7ae259aff9d841da9"},
- {file = "PyQt6_sip-13.6.0-cp38-cp38-win_amd64.whl", hash = "sha256:9adf672f9114687533a74d5c2d4c03a9a929ad5ad9c3e88098a7da1a440ab916"},
- {file = "PyQt6_sip-13.6.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:98bf954103b087162fa63b3a78f30b0b63da22fd6450b610ec1b851dbb798228"},
- {file = "PyQt6_sip-13.6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:39854dba35f8e5a4288da26ecb5f40b4c5ec1932efffb3f49d5ea435a7f37fb3"},
- {file = "PyQt6_sip-13.6.0-cp39-cp39-win32.whl", hash = "sha256:747f6ca44af81777a2c696bd501bc4815a53ec6fc94d4e25830e10bc1391f8ab"},
- {file = "PyQt6_sip-13.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:33ea771fe777eb0d1a2c3ef35bcc3f7a286eb3ff09cd5b2fdd3d87d1f392d7e8"},
- {file = "PyQt6_sip-13.6.0.tar.gz", hash = "sha256:2486e1588071943d4f6657ba09096dc9fffd2322ad2c30041e78ea3f037b5778"},
-]
-
-[[package]]
-name = "pyreadline3"
-version = "3.4.1"
-description = "A python implementation of GNU readline."
-optional = false
-python-versions = "*"
-files = [
- {file = "pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb"},
- {file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"},
-]
-
-[[package]]
-name = "pytest"
-version = "7.4.4"
-description = "pytest: simple powerful testing with Python"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "pytest-7.4.4-py3-none-any.whl", hash = "sha256:b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8"},
- {file = "pytest-7.4.4.tar.gz", hash = "sha256:2cf0005922c6ace4a3e2ec8b4080eb0d9753fdc93107415332f50ce9e7994280"},
-]
-
-[package.dependencies]
-colorama = {version = "*", markers = "sys_platform == \"win32\""}
-exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""}
-iniconfig = "*"
-packaging = "*"
-pluggy = ">=0.12,<2.0"
-tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""}
-
-[package.extras]
-testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"]
-
-[[package]]
-name = "pytest-benchmark"
-version = "4.0.0"
-description = "A ``pytest`` fixture for benchmarking code. It will group the tests into rounds that are calibrated to the chosen timer."
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "pytest-benchmark-4.0.0.tar.gz", hash = "sha256:fb0785b83efe599a6a956361c0691ae1dbb5318018561af10f3e915caa0048d1"},
- {file = "pytest_benchmark-4.0.0-py3-none-any.whl", hash = "sha256:fdb7db64e31c8b277dff9850d2a2556d8b60bcb0ea6524e36e28ffd7c87f71d6"},
-]
-
-[package.dependencies]
-py-cpuinfo = "*"
-pytest = ">=3.8"
-
-[package.extras]
-aspect = ["aspectlib"]
-elasticsearch = ["elasticsearch"]
-histogram = ["pygal", "pygaljs"]
-
-[[package]]
-name = "pytest-cov"
-version = "4.1.0"
-description = "Pytest plugin for measuring coverage."
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "pytest-cov-4.1.0.tar.gz", hash = "sha256:3904b13dfbfec47f003b8e77fd5b589cd11904a21ddf1ab38a64f204d6a10ef6"},
- {file = "pytest_cov-4.1.0-py3-none-any.whl", hash = "sha256:6ba70b9e97e69fcc3fb45bfeab2d0a138fb65c4d0d6a41ef33983ad114be8c3a"},
-]
-
-[package.dependencies]
-coverage = {version = ">=5.2.1", extras = ["toml"]}
-pytest = ">=4.6"
-
-[package.extras]
-testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtualenv"]
-
-[[package]]
-name = "pytest-mock"
-version = "3.14.0"
-description = "Thin-wrapper around the mock package for easier use with pytest"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"},
- {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"},
-]
-
-[package.dependencies]
-pytest = ">=6.2.5"
-
-[package.extras]
-dev = ["pre-commit", "pytest-asyncio", "tox"]
-
-[[package]]
-name = "pytest-qt"
-version = "4.4.0"
-description = "pytest support for PyQt and PySide applications"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "pytest-qt-4.4.0.tar.gz", hash = "sha256:76896142a940a4285339008d6928a36d4be74afec7e634577e842c9cc5c56844"},
- {file = "pytest_qt-4.4.0-py3-none-any.whl", hash = "sha256:001ed2f8641764b394cf286dc8a4203e40eaf9fff75bf0bfe5103f7f8d0c591d"},
-]
-
-[package.dependencies]
-pluggy = ">=1.1"
-pytest = "*"
-
-[package.extras]
-dev = ["pre-commit", "tox"]
-doc = ["sphinx", "sphinx-rtd-theme"]
-
-[[package]]
-name = "pytest-xvfb"
-version = "2.0.0"
-description = "A pytest plugin to run Xvfb for tests."
-optional = false
-python-versions = ">=3.5"
-files = [
- {file = "pytest-xvfb-2.0.0.tar.gz", hash = "sha256:c4ba642de05499940db7f65ee111621939be513e3e75c3da9156b7235e2ed8cf"},
- {file = "pytest_xvfb-2.0.0-py3-none-any.whl", hash = "sha256:6d21b46f099c06d6b8b200e73341da3adb73d67e9139c55d617930881779360b"},
-]
-
-[package.dependencies]
-pytest = ">=2.8.1"
-pyvirtualdisplay = ">=1.3"
-
-[[package]]
-name = "pyvirtualdisplay"
-version = "3.0"
-description = "python wrapper for Xvfb, Xephyr and Xvnc"
-optional = false
-python-versions = "*"
-files = [
- {file = "PyVirtualDisplay-3.0-py3-none-any.whl", hash = "sha256:40d4b8dfe4b8de8552e28eb367647f311f88a130bf837fe910e7f180d5477f0e"},
- {file = "PyVirtualDisplay-3.0.tar.gz", hash = "sha256:09755bc3ceb6eb725fb07eca5425f43f2358d3bf08e00d2a9b792a1aedd16159"},
-]
-
-[[package]]
-name = "pywin32-ctypes"
-version = "0.2.2"
-description = "A (partial) reimplementation of pywin32 using ctypes/cffi"
-optional = false
-python-versions = ">=3.6"
-files = [
- {file = "pywin32-ctypes-0.2.2.tar.gz", hash = "sha256:3426e063bdd5fd4df74a14fa3cf80a0b42845a87e1d1e81f6549f9daec593a60"},
- {file = "pywin32_ctypes-0.2.2-py3-none-any.whl", hash = "sha256:bf490a1a709baf35d688fe0ecf980ed4de11d2b3e37b51e5442587a75d9957e7"},
-]
-
-[[package]]
-name = "pyyaml"
-version = "6.0.1"
-description = "YAML parser and emitter for Python"
-optional = false
-python-versions = ">=3.6"
-files = [
- {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"},
- {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"},
- {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"},
- {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"},
- {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"},
- {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"},
- {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"},
- {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"},
- {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"},
- {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"},
- {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"},
- {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"},
- {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"},
- {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"},
- {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"},
- {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"},
- {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"},
- {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"},
- {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"},
- {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"},
- {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"},
- {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"},
- {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"},
- {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"},
- {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"},
- {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"},
- {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"},
- {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"},
- {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"},
- {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"},
- {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"},
- {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"},
- {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"},
- {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"},
- {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"},
- {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"},
- {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"},
- {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"},
- {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"},
- {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"},
- {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"},
- {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"},
- {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"},
- {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"},
- {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"},
- {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"},
- {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"},
- {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"},
- {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"},
- {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"},
- {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"},
-]
-
-[[package]]
-name = "regex"
-version = "2023.12.25"
-description = "Alternative regular expression module, to replace re."
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0694219a1d54336fd0445ea382d49d36882415c0134ee1e8332afd1529f0baa5"},
- {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b014333bd0217ad3d54c143de9d4b9a3ca1c5a29a6d0d554952ea071cff0f1f8"},
- {file = "regex-2023.12.25-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d865984b3f71f6d0af64d0d88f5733521698f6c16f445bb09ce746c92c97c586"},
- {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e0eabac536b4cc7f57a5f3d095bfa557860ab912f25965e08fe1545e2ed8b4c"},
- {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c25a8ad70e716f96e13a637802813f65d8a6760ef48672aa3502f4c24ea8b400"},
- {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9b6d73353f777630626f403b0652055ebfe8ff142a44ec2cf18ae470395766e"},
- {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9cc99d6946d750eb75827cb53c4371b8b0fe89c733a94b1573c9dd16ea6c9e4"},
- {file = "regex-2023.12.25-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88d1f7bef20c721359d8675f7d9f8e414ec5003d8f642fdfd8087777ff7f94b5"},
- {file = "regex-2023.12.25-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cb3fe77aec8f1995611f966d0c656fdce398317f850d0e6e7aebdfe61f40e1cd"},
- {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7aa47c2e9ea33a4a2a05f40fcd3ea36d73853a2aae7b4feab6fc85f8bf2c9704"},
- {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:df26481f0c7a3f8739fecb3e81bc9da3fcfae34d6c094563b9d4670b047312e1"},
- {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c40281f7d70baf6e0db0c2f7472b31609f5bc2748fe7275ea65a0b4601d9b392"},
- {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:d94a1db462d5690ebf6ae86d11c5e420042b9898af5dcf278bd97d6bda065423"},
- {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ba1b30765a55acf15dce3f364e4928b80858fa8f979ad41f862358939bdd1f2f"},
- {file = "regex-2023.12.25-cp310-cp310-win32.whl", hash = "sha256:150c39f5b964e4d7dba46a7962a088fbc91f06e606f023ce57bb347a3b2d4630"},
- {file = "regex-2023.12.25-cp310-cp310-win_amd64.whl", hash = "sha256:09da66917262d9481c719599116c7dc0c321ffcec4b1f510c4f8a066f8768105"},
- {file = "regex-2023.12.25-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1b9d811f72210fa9306aeb88385b8f8bcef0dfbf3873410413c00aa94c56c2b6"},
- {file = "regex-2023.12.25-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d902a43085a308cef32c0d3aea962524b725403fd9373dea18110904003bac97"},
- {file = "regex-2023.12.25-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d166eafc19f4718df38887b2bbe1467a4f74a9830e8605089ea7a30dd4da8887"},
- {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7ad32824b7f02bb3c9f80306d405a1d9b7bb89362d68b3c5a9be53836caebdb"},
- {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:636ba0a77de609d6510235b7f0e77ec494d2657108f777e8765efc060094c98c"},
- {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fda75704357805eb953a3ee15a2b240694a9a514548cd49b3c5124b4e2ad01b"},
- {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f72cbae7f6b01591f90814250e636065850c5926751af02bb48da94dfced7baa"},
- {file = "regex-2023.12.25-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db2a0b1857f18b11e3b0e54ddfefc96af46b0896fb678c85f63fb8c37518b3e7"},
- {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7502534e55c7c36c0978c91ba6f61703faf7ce733715ca48f499d3dbbd7657e0"},
- {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e8c7e08bb566de4faaf11984af13f6bcf6a08f327b13631d41d62592681d24fe"},
- {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:283fc8eed679758de38fe493b7d7d84a198b558942b03f017b1f94dda8efae80"},
- {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:f44dd4d68697559d007462b0a3a1d9acd61d97072b71f6d1968daef26bc744bd"},
- {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:67d3ccfc590e5e7197750fcb3a2915b416a53e2de847a728cfa60141054123d4"},
- {file = "regex-2023.12.25-cp311-cp311-win32.whl", hash = "sha256:68191f80a9bad283432385961d9efe09d783bcd36ed35a60fb1ff3f1ec2efe87"},
- {file = "regex-2023.12.25-cp311-cp311-win_amd64.whl", hash = "sha256:7d2af3f6b8419661a0c421584cfe8aaec1c0e435ce7e47ee2a97e344b98f794f"},
- {file = "regex-2023.12.25-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8a0ccf52bb37d1a700375a6b395bff5dd15c50acb745f7db30415bae3c2b0715"},
- {file = "regex-2023.12.25-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c3c4a78615b7762740531c27cf46e2f388d8d727d0c0c739e72048beb26c8a9d"},
- {file = "regex-2023.12.25-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ad83e7545b4ab69216cef4cc47e344d19622e28aabec61574b20257c65466d6a"},
- {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7a635871143661feccce3979e1727c4e094f2bdfd3ec4b90dfd4f16f571a87a"},
- {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d498eea3f581fbe1b34b59c697512a8baef88212f92e4c7830fcc1499f5b45a5"},
- {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:43f7cd5754d02a56ae4ebb91b33461dc67be8e3e0153f593c509e21d219c5060"},
- {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51f4b32f793812714fd5307222a7f77e739b9bc566dc94a18126aba3b92b98a3"},
- {file = "regex-2023.12.25-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba99d8077424501b9616b43a2d208095746fb1284fc5ba490139651f971d39d9"},
- {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4bfc2b16e3ba8850e0e262467275dd4d62f0d045e0e9eda2bc65078c0110a11f"},
- {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8c2c19dae8a3eb0ea45a8448356ed561be843b13cbc34b840922ddf565498c1c"},
- {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:60080bb3d8617d96f0fb7e19796384cc2467447ef1c491694850ebd3670bc457"},
- {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b77e27b79448e34c2c51c09836033056a0547aa360c45eeeb67803da7b0eedaf"},
- {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:518440c991f514331f4850a63560321f833979d145d7d81186dbe2f19e27ae3d"},
- {file = "regex-2023.12.25-cp312-cp312-win32.whl", hash = "sha256:e2610e9406d3b0073636a3a2e80db05a02f0c3169b5632022b4e81c0364bcda5"},
- {file = "regex-2023.12.25-cp312-cp312-win_amd64.whl", hash = "sha256:cc37b9aeebab425f11f27e5e9e6cf580be7206c6582a64467a14dda211abc232"},
- {file = "regex-2023.12.25-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:da695d75ac97cb1cd725adac136d25ca687da4536154cdc2815f576e4da11c69"},
- {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d126361607b33c4eb7b36debc173bf25d7805847346dd4d99b5499e1fef52bc7"},
- {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4719bb05094d7d8563a450cf8738d2e1061420f79cfcc1fa7f0a44744c4d8f73"},
- {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dd58946bce44b53b06d94aa95560d0b243eb2fe64227cba50017a8d8b3cd3e2"},
- {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22a86d9fff2009302c440b9d799ef2fe322416d2d58fc124b926aa89365ec482"},
- {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2aae8101919e8aa05ecfe6322b278f41ce2994c4a430303c4cd163fef746e04f"},
- {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e692296c4cc2873967771345a876bcfc1c547e8dd695c6b89342488b0ea55cd8"},
- {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:263ef5cc10979837f243950637fffb06e8daed7f1ac1e39d5910fd29929e489a"},
- {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d6f7e255e5fa94642a0724e35406e6cb7001c09d476ab5fce002f652b36d0c39"},
- {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:88ad44e220e22b63b0f8f81f007e8abbb92874d8ced66f32571ef8beb0643b2b"},
- {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:3a17d3ede18f9cedcbe23d2daa8a2cd6f59fe2bf082c567e43083bba3fb00347"},
- {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d15b274f9e15b1a0b7a45d2ac86d1f634d983ca40d6b886721626c47a400bf39"},
- {file = "regex-2023.12.25-cp37-cp37m-win32.whl", hash = "sha256:ed19b3a05ae0c97dd8f75a5d8f21f7723a8c33bbc555da6bbe1f96c470139d3c"},
- {file = "regex-2023.12.25-cp37-cp37m-win_amd64.whl", hash = "sha256:a6d1047952c0b8104a1d371f88f4ab62e6275567d4458c1e26e9627ad489b445"},
- {file = "regex-2023.12.25-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b43523d7bc2abd757119dbfb38af91b5735eea45537ec6ec3a5ec3f9562a1c53"},
- {file = "regex-2023.12.25-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:efb2d82f33b2212898f1659fb1c2e9ac30493ac41e4d53123da374c3b5541e64"},
- {file = "regex-2023.12.25-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b7fca9205b59c1a3d5031f7e64ed627a1074730a51c2a80e97653e3e9fa0d415"},
- {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:086dd15e9435b393ae06f96ab69ab2d333f5d65cbe65ca5a3ef0ec9564dfe770"},
- {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e81469f7d01efed9b53740aedd26085f20d49da65f9c1f41e822a33992cb1590"},
- {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:34e4af5b27232f68042aa40a91c3b9bb4da0eeb31b7632e0091afc4310afe6cb"},
- {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9852b76ab558e45b20bf1893b59af64a28bd3820b0c2efc80e0a70a4a3ea51c1"},
- {file = "regex-2023.12.25-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff100b203092af77d1a5a7abe085b3506b7eaaf9abf65b73b7d6905b6cb76988"},
- {file = "regex-2023.12.25-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cc038b2d8b1470364b1888a98fd22d616fba2b6309c5b5f181ad4483e0017861"},
- {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:094ba386bb5c01e54e14434d4caabf6583334090865b23ef58e0424a6286d3dc"},
- {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5cd05d0f57846d8ba4b71d9c00f6f37d6b97d5e5ef8b3c3840426a475c8f70f4"},
- {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:9aa1a67bbf0f957bbe096375887b2505f5d8ae16bf04488e8b0f334c36e31360"},
- {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:98a2636994f943b871786c9e82bfe7883ecdaba2ef5df54e1450fa9869d1f756"},
- {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:37f8e93a81fc5e5bd8db7e10e62dc64261bcd88f8d7e6640aaebe9bc180d9ce2"},
- {file = "regex-2023.12.25-cp38-cp38-win32.whl", hash = "sha256:d78bd484930c1da2b9679290a41cdb25cc127d783768a0369d6b449e72f88beb"},
- {file = "regex-2023.12.25-cp38-cp38-win_amd64.whl", hash = "sha256:b521dcecebc5b978b447f0f69b5b7f3840eac454862270406a39837ffae4e697"},
- {file = "regex-2023.12.25-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f7bc09bc9c29ebead055bcba136a67378f03d66bf359e87d0f7c759d6d4ffa31"},
- {file = "regex-2023.12.25-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e14b73607d6231f3cc4622809c196b540a6a44e903bcfad940779c80dffa7be7"},
- {file = "regex-2023.12.25-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9eda5f7a50141291beda3edd00abc2d4a5b16c29c92daf8d5bd76934150f3edc"},
- {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc6bb9aa69aacf0f6032c307da718f61a40cf970849e471254e0e91c56ffca95"},
- {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:298dc6354d414bc921581be85695d18912bea163a8b23cac9a2562bbcd5088b1"},
- {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2f4e475a80ecbd15896a976aa0b386c5525d0ed34d5c600b6d3ebac0a67c7ddf"},
- {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:531ac6cf22b53e0696f8e1d56ce2396311254eb806111ddd3922c9d937151dae"},
- {file = "regex-2023.12.25-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22f3470f7524b6da61e2020672df2f3063676aff444db1daa283c2ea4ed259d6"},
- {file = "regex-2023.12.25-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:89723d2112697feaa320c9d351e5f5e7b841e83f8b143dba8e2d2b5f04e10923"},
- {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0ecf44ddf9171cd7566ef1768047f6e66975788258b1c6c6ca78098b95cf9a3d"},
- {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:905466ad1702ed4acfd67a902af50b8db1feeb9781436372261808df7a2a7bca"},
- {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:4558410b7a5607a645e9804a3e9dd509af12fb72b9825b13791a37cd417d73a5"},
- {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:7e316026cc1095f2a3e8cc012822c99f413b702eaa2ca5408a513609488cb62f"},
- {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3b1de218d5375cd6ac4b5493e0b9f3df2be331e86520f23382f216c137913d20"},
- {file = "regex-2023.12.25-cp39-cp39-win32.whl", hash = "sha256:11a963f8e25ab5c61348d090bf1b07f1953929c13bd2309a0662e9ff680763c9"},
- {file = "regex-2023.12.25-cp39-cp39-win_amd64.whl", hash = "sha256:e693e233ac92ba83a87024e1d32b5f9ab15ca55ddd916d878146f4e3406b5c91"},
- {file = "regex-2023.12.25.tar.gz", hash = "sha256:29171aa128da69afdf4bde412d5bedc335f2ca8fcfe4489038577d05f16181e5"},
-]
-
-[[package]]
-name = "requests"
-version = "2.32.3"
-description = "Python HTTP for Humans."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"},
- {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"},
-]
-
-[package.dependencies]
-certifi = ">=2017.4.17"
-charset-normalizer = ">=2,<4"
-idna = ">=2.5,<4"
-urllib3 = ">=1.21.1,<3"
-
-[package.extras]
-socks = ["PySocks (>=1.5.6,!=1.5.7)"]
-use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"]
-
-[[package]]
-name = "ruff"
-version = "0.1.15"
-description = "An extremely fast Python linter and code formatter, written in Rust."
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "ruff-0.1.15-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:5fe8d54df166ecc24106db7dd6a68d44852d14eb0729ea4672bb4d96c320b7df"},
- {file = "ruff-0.1.15-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:6f0bfbb53c4b4de117ac4d6ddfd33aa5fc31beeaa21d23c45c6dd249faf9126f"},
- {file = "ruff-0.1.15-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0d432aec35bfc0d800d4f70eba26e23a352386be3a6cf157083d18f6f5881c8"},
- {file = "ruff-0.1.15-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9405fa9ac0e97f35aaddf185a1be194a589424b8713e3b97b762336ec79ff807"},
- {file = "ruff-0.1.15-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c66ec24fe36841636e814b8f90f572a8c0cb0e54d8b5c2d0e300d28a0d7bffec"},
- {file = "ruff-0.1.15-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:6f8ad828f01e8dd32cc58bc28375150171d198491fc901f6f98d2a39ba8e3ff5"},
- {file = "ruff-0.1.15-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86811954eec63e9ea162af0ffa9f8d09088bab51b7438e8b6488b9401863c25e"},
- {file = "ruff-0.1.15-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fd4025ac5e87d9b80e1f300207eb2fd099ff8200fa2320d7dc066a3f4622dc6b"},
- {file = "ruff-0.1.15-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b17b93c02cdb6aeb696effecea1095ac93f3884a49a554a9afa76bb125c114c1"},
- {file = "ruff-0.1.15-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:ddb87643be40f034e97e97f5bc2ef7ce39de20e34608f3f829db727a93fb82c5"},
- {file = "ruff-0.1.15-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:abf4822129ed3a5ce54383d5f0e964e7fef74a41e48eb1dfad404151efc130a2"},
- {file = "ruff-0.1.15-py3-none-musllinux_1_2_i686.whl", hash = "sha256:6c629cf64bacfd136c07c78ac10a54578ec9d1bd2a9d395efbee0935868bf852"},
- {file = "ruff-0.1.15-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:1bab866aafb53da39c2cadfb8e1c4550ac5340bb40300083eb8967ba25481447"},
- {file = "ruff-0.1.15-py3-none-win32.whl", hash = "sha256:2417e1cb6e2068389b07e6fa74c306b2810fe3ee3476d5b8a96616633f40d14f"},
- {file = "ruff-0.1.15-py3-none-win_amd64.whl", hash = "sha256:3837ac73d869efc4182d9036b1405ef4c73d9b1f88da2413875e34e0d6919587"},
- {file = "ruff-0.1.15-py3-none-win_arm64.whl", hash = "sha256:9a933dfb1c14ec7a33cceb1e49ec4a16b51ce3c20fd42663198746efc0427360"},
- {file = "ruff-0.1.15.tar.gz", hash = "sha256:f6dfa8c1b21c913c326919056c390966648b680966febcb796cc9d1aaab8564e"},
-]
-
-[[package]]
-name = "safetensors"
-version = "0.4.5"
-description = ""
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "safetensors-0.4.5-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:a63eaccd22243c67e4f2b1c3e258b257effc4acd78f3b9d397edc8cf8f1298a7"},
- {file = "safetensors-0.4.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:23fc9b4ec7b602915cbb4ec1a7c1ad96d2743c322f20ab709e2c35d1b66dad27"},
- {file = "safetensors-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6885016f34bef80ea1085b7e99b3c1f92cb1be78a49839203060f67b40aee761"},
- {file = "safetensors-0.4.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:133620f443450429322f238fda74d512c4008621227fccf2f8cf4a76206fea7c"},
- {file = "safetensors-0.4.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4fb3e0609ec12d2a77e882f07cced530b8262027f64b75d399f1504ffec0ba56"},
- {file = "safetensors-0.4.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d0f1dd769f064adc33831f5e97ad07babbd728427f98e3e1db6902e369122737"},
- {file = "safetensors-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c6d156bdb26732feada84f9388a9f135528c1ef5b05fae153da365ad4319c4c5"},
- {file = "safetensors-0.4.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9e347d77e2c77eb7624400ccd09bed69d35c0332f417ce8c048d404a096c593b"},
- {file = "safetensors-0.4.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9f556eea3aec1d3d955403159fe2123ddd68e880f83954ee9b4a3f2e15e716b6"},
- {file = "safetensors-0.4.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9483f42be3b6bc8ff77dd67302de8ae411c4db39f7224dec66b0eb95822e4163"},
- {file = "safetensors-0.4.5-cp310-none-win32.whl", hash = "sha256:7389129c03fadd1ccc37fd1ebbc773f2b031483b04700923c3511d2a939252cc"},
- {file = "safetensors-0.4.5-cp310-none-win_amd64.whl", hash = "sha256:e98ef5524f8b6620c8cdef97220c0b6a5c1cef69852fcd2f174bb96c2bb316b1"},
- {file = "safetensors-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:21f848d7aebd5954f92538552d6d75f7c1b4500f51664078b5b49720d180e47c"},
- {file = "safetensors-0.4.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bb07000b19d41e35eecef9a454f31a8b4718a185293f0d0b1c4b61d6e4487971"},
- {file = "safetensors-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09dedf7c2fda934ee68143202acff6e9e8eb0ddeeb4cfc24182bef999efa9f42"},
- {file = "safetensors-0.4.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:59b77e4b7a708988d84f26de3ebead61ef1659c73dcbc9946c18f3b1786d2688"},
- {file = "safetensors-0.4.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5d3bc83e14d67adc2e9387e511097f254bd1b43c3020440e708858c684cbac68"},
- {file = "safetensors-0.4.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:39371fc551c1072976073ab258c3119395294cf49cdc1f8476794627de3130df"},
- {file = "safetensors-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6c19feda32b931cae0acd42748a670bdf56bee6476a046af20181ad3fee4090"},
- {file = "safetensors-0.4.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a659467495de201e2f282063808a41170448c78bada1e62707b07a27b05e6943"},
- {file = "safetensors-0.4.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bad5e4b2476949bcd638a89f71b6916fa9a5cae5c1ae7eede337aca2100435c0"},
- {file = "safetensors-0.4.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a3a315a6d0054bc6889a17f5668a73f94f7fe55121ff59e0a199e3519c08565f"},
- {file = "safetensors-0.4.5-cp311-none-win32.whl", hash = "sha256:a01e232e6d3d5cf8b1667bc3b657a77bdab73f0743c26c1d3c5dd7ce86bd3a92"},
- {file = "safetensors-0.4.5-cp311-none-win_amd64.whl", hash = "sha256:cbd39cae1ad3e3ef6f63a6f07296b080c951f24cec60188378e43d3713000c04"},
- {file = "safetensors-0.4.5-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:473300314e026bd1043cef391bb16a8689453363381561b8a3e443870937cc1e"},
- {file = "safetensors-0.4.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:801183a0f76dc647f51a2d9141ad341f9665602a7899a693207a82fb102cc53e"},
- {file = "safetensors-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1524b54246e422ad6fb6aea1ac71edeeb77666efa67230e1faf6999df9b2e27f"},
- {file = "safetensors-0.4.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b3139098e3e8b2ad7afbca96d30ad29157b50c90861084e69fcb80dec7430461"},
- {file = "safetensors-0.4.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65573dc35be9059770808e276b017256fa30058802c29e1038eb1c00028502ea"},
- {file = "safetensors-0.4.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fd33da8e9407559f8779c82a0448e2133737f922d71f884da27184549416bfed"},
- {file = "safetensors-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3685ce7ed036f916316b567152482b7e959dc754fcc4a8342333d222e05f407c"},
- {file = "safetensors-0.4.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dde2bf390d25f67908278d6f5d59e46211ef98e44108727084d4637ee70ab4f1"},
- {file = "safetensors-0.4.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7469d70d3de970b1698d47c11ebbf296a308702cbaae7fcb993944751cf985f4"},
- {file = "safetensors-0.4.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3a6ba28118636a130ccbb968bc33d4684c48678695dba2590169d5ab03a45646"},
- {file = "safetensors-0.4.5-cp312-none-win32.whl", hash = "sha256:c859c7ed90b0047f58ee27751c8e56951452ed36a67afee1b0a87847d065eec6"},
- {file = "safetensors-0.4.5-cp312-none-win_amd64.whl", hash = "sha256:b5a8810ad6a6f933fff6c276eae92c1da217b39b4d8b1bc1c0b8af2d270dc532"},
- {file = "safetensors-0.4.5-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:25e5f8e2e92a74f05b4ca55686234c32aac19927903792b30ee6d7bd5653d54e"},
- {file = "safetensors-0.4.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:81efb124b58af39fcd684254c645e35692fea81c51627259cdf6d67ff4458916"},
- {file = "safetensors-0.4.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:585f1703a518b437f5103aa9cf70e9bd437cb78eea9c51024329e4fb8a3e3679"},
- {file = "safetensors-0.4.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4b99fbf72e3faf0b2f5f16e5e3458b93b7d0a83984fe8d5364c60aa169f2da89"},
- {file = "safetensors-0.4.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b17b299ca9966ca983ecda1c0791a3f07f9ca6ab5ded8ef3d283fff45f6bcd5f"},
- {file = "safetensors-0.4.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:76ded72f69209c9780fdb23ea89e56d35c54ae6abcdec67ccb22af8e696e449a"},
- {file = "safetensors-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2783956926303dcfeb1de91a4d1204cd4089ab441e622e7caee0642281109db3"},
- {file = "safetensors-0.4.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d94581aab8c6b204def4d7320f07534d6ee34cd4855688004a4354e63b639a35"},
- {file = "safetensors-0.4.5-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:67e1e7cb8678bb1b37ac48ec0df04faf689e2f4e9e81e566b5c63d9f23748523"},
- {file = "safetensors-0.4.5-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:dbd280b07e6054ea68b0cb4b16ad9703e7d63cd6890f577cb98acc5354780142"},
- {file = "safetensors-0.4.5-cp37-cp37m-macosx_10_12_x86_64.whl", hash = "sha256:77d9b228da8374c7262046a36c1f656ba32a93df6cc51cd4453af932011e77f1"},
- {file = "safetensors-0.4.5-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:500cac01d50b301ab7bb192353317035011c5ceeef0fca652f9f43c000bb7f8d"},
- {file = "safetensors-0.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:75331c0c746f03158ded32465b7d0b0e24c5a22121743662a2393439c43a45cf"},
- {file = "safetensors-0.4.5-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:670e95fe34e0d591d0529e5e59fd9d3d72bc77b1444fcaa14dccda4f36b5a38b"},
- {file = "safetensors-0.4.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:098923e2574ff237c517d6e840acada8e5b311cb1fa226019105ed82e9c3b62f"},
- {file = "safetensors-0.4.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13ca0902d2648775089fa6a0c8fc9e6390c5f8ee576517d33f9261656f851e3f"},
- {file = "safetensors-0.4.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f0032bedc869c56f8d26259fe39cd21c5199cd57f2228d817a0e23e8370af25"},
- {file = "safetensors-0.4.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f4b15f51b4f8f2a512341d9ce3475cacc19c5fdfc5db1f0e19449e75f95c7dc8"},
- {file = "safetensors-0.4.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:f6594d130d0ad933d885c6a7b75c5183cb0e8450f799b80a39eae2b8508955eb"},
- {file = "safetensors-0.4.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:60c828a27e852ded2c85fc0f87bf1ec20e464c5cd4d56ff0e0711855cc2e17f8"},
- {file = "safetensors-0.4.5-cp37-none-win32.whl", hash = "sha256:6d3de65718b86c3eeaa8b73a9c3d123f9307a96bbd7be9698e21e76a56443af5"},
- {file = "safetensors-0.4.5-cp37-none-win_amd64.whl", hash = "sha256:5a2d68a523a4cefd791156a4174189a4114cf0bf9c50ceb89f261600f3b2b81a"},
- {file = "safetensors-0.4.5-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:e7a97058f96340850da0601a3309f3d29d6191b0702b2da201e54c6e3e44ccf0"},
- {file = "safetensors-0.4.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:63bfd425e25f5c733f572e2246e08a1c38bd6f2e027d3f7c87e2e43f228d1345"},
- {file = "safetensors-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3664ac565d0e809b0b929dae7ccd74e4d3273cd0c6d1220c6430035befb678e"},
- {file = "safetensors-0.4.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:313514b0b9b73ff4ddfb4edd71860696dbe3c1c9dc4d5cc13dbd74da283d2cbf"},
- {file = "safetensors-0.4.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31fa33ee326f750a2f2134a6174773c281d9a266ccd000bd4686d8021f1f3dac"},
- {file = "safetensors-0.4.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:09566792588d77b68abe53754c9f1308fadd35c9f87be939e22c623eaacbed6b"},
- {file = "safetensors-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309aaec9b66cbf07ad3a2e5cb8a03205663324fea024ba391594423d0f00d9fe"},
- {file = "safetensors-0.4.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:53946c5813b8f9e26103c5efff4a931cc45d874f45229edd68557ffb35ffb9f8"},
- {file = "safetensors-0.4.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:868f9df9e99ad1e7f38c52194063a982bc88fedc7d05096f4f8160403aaf4bd6"},
- {file = "safetensors-0.4.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:9cc9449bd0b0bc538bd5e268221f0c5590bc5c14c1934a6ae359d44410dc68c4"},
- {file = "safetensors-0.4.5-cp38-none-win32.whl", hash = "sha256:83c4f13a9e687335c3928f615cd63a37e3f8ef072a3f2a0599fa09f863fb06a2"},
- {file = "safetensors-0.4.5-cp38-none-win_amd64.whl", hash = "sha256:b98d40a2ffa560653f6274e15b27b3544e8e3713a44627ce268f419f35c49478"},
- {file = "safetensors-0.4.5-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:cf727bb1281d66699bef5683b04d98c894a2803442c490a8d45cd365abfbdeb2"},
- {file = "safetensors-0.4.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:96f1d038c827cdc552d97e71f522e1049fef0542be575421f7684756a748e457"},
- {file = "safetensors-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:139fbee92570ecea774e6344fee908907db79646d00b12c535f66bc78bd5ea2c"},
- {file = "safetensors-0.4.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c36302c1c69eebb383775a89645a32b9d266878fab619819ce660309d6176c9b"},
- {file = "safetensors-0.4.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d641f5b8149ea98deb5ffcf604d764aad1de38a8285f86771ce1abf8e74c4891"},
- {file = "safetensors-0.4.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b4db6a61d968de73722b858038c616a1bebd4a86abe2688e46ca0cc2d17558f2"},
- {file = "safetensors-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b75a616e02f21b6f1d5785b20cecbab5e2bd3f6358a90e8925b813d557666ec1"},
- {file = "safetensors-0.4.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:788ee7d04cc0e0e7f944c52ff05f52a4415b312f5efd2ee66389fb7685ee030c"},
- {file = "safetensors-0.4.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:87bc42bd04fd9ca31396d3ca0433db0be1411b6b53ac5a32b7845a85d01ffc2e"},
- {file = "safetensors-0.4.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4037676c86365a721a8c9510323a51861d703b399b78a6b4486a54a65a975fca"},
- {file = "safetensors-0.4.5-cp39-none-win32.whl", hash = "sha256:1500418454529d0ed5c1564bda376c4ddff43f30fce9517d9bee7bcce5a8ef50"},
- {file = "safetensors-0.4.5-cp39-none-win_amd64.whl", hash = "sha256:9d1a94b9d793ed8fe35ab6d5cea28d540a46559bafc6aae98f30ee0867000cab"},
- {file = "safetensors-0.4.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:fdadf66b5a22ceb645d5435a0be7a0292ce59648ca1d46b352f13cff3ea80410"},
- {file = "safetensors-0.4.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d42ffd4c2259f31832cb17ff866c111684c87bd930892a1ba53fed28370c918c"},
- {file = "safetensors-0.4.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd8a1f6d2063a92cd04145c7fd9e31a1c7d85fbec20113a14b487563fdbc0597"},
- {file = "safetensors-0.4.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:951d2fcf1817f4fb0ef0b48f6696688a4e852a95922a042b3f96aaa67eedc920"},
- {file = "safetensors-0.4.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6ac85d9a8c1af0e3132371d9f2d134695a06a96993c2e2f0bbe25debb9e3f67a"},
- {file = "safetensors-0.4.5-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:e3cec4a29eb7fe8da0b1c7988bc3828183080439dd559f720414450de076fcab"},
- {file = "safetensors-0.4.5-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:21742b391b859e67b26c0b2ac37f52c9c0944a879a25ad2f9f9f3cd61e7fda8f"},
- {file = "safetensors-0.4.5-pp37-pypy37_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c7db3006a4915151ce1913652e907cdede299b974641a83fbc092102ac41b644"},
- {file = "safetensors-0.4.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f68bf99ea970960a237f416ea394e266e0361895753df06e3e06e6ea7907d98b"},
- {file = "safetensors-0.4.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8158938cf3324172df024da511839d373c40fbfaa83e9abf467174b2910d7b4c"},
- {file = "safetensors-0.4.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:540ce6c4bf6b58cb0fd93fa5f143bc0ee341c93bb4f9287ccd92cf898cc1b0dd"},
- {file = "safetensors-0.4.5-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:bfeaa1a699c6b9ed514bd15e6a91e74738b71125a9292159e3d6b7f0a53d2cde"},
- {file = "safetensors-0.4.5-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:01c8f00da537af711979e1b42a69a8ec9e1d7112f208e0e9b8a35d2c381085ef"},
- {file = "safetensors-0.4.5-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a0dd565f83b30f2ca79b5d35748d0d99dd4b3454f80e03dfb41f0038e3bdf180"},
- {file = "safetensors-0.4.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:023b6e5facda76989f4cba95a861b7e656b87e225f61811065d5c501f78cdb3f"},
- {file = "safetensors-0.4.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9633b663393d5796f0b60249549371e392b75a0b955c07e9c6f8708a87fc841f"},
- {file = "safetensors-0.4.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78dd8adfb48716233c45f676d6e48534d34b4bceb50162c13d1f0bdf6f78590a"},
- {file = "safetensors-0.4.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8e8deb16c4321d61ae72533b8451ec4a9af8656d1c61ff81aa49f966406e4b68"},
- {file = "safetensors-0.4.5-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:52452fa5999dc50c4decaf0c53aa28371f7f1e0fe5c2dd9129059fbe1e1599c7"},
- {file = "safetensors-0.4.5-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:d5f23198821e227cfc52d50fa989813513db381255c6d100927b012f0cfec63d"},
- {file = "safetensors-0.4.5-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f4beb84b6073b1247a773141a6331117e35d07134b3bb0383003f39971d414bb"},
- {file = "safetensors-0.4.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:68814d599d25ed2fdd045ed54d370d1d03cf35e02dce56de44c651f828fb9b7b"},
- {file = "safetensors-0.4.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0b6453c54c57c1781292c46593f8a37254b8b99004c68d6c3ce229688931a22"},
- {file = "safetensors-0.4.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:adaa9c6dead67e2dd90d634f89131e43162012479d86e25618e821a03d1eb1dc"},
- {file = "safetensors-0.4.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:73e7d408e9012cd17511b382b43547850969c7979efc2bc353f317abaf23c84c"},
- {file = "safetensors-0.4.5-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:775409ce0fcc58b10773fdb4221ed1eb007de10fe7adbdf8f5e8a56096b6f0bc"},
- {file = "safetensors-0.4.5-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:834001bed193e4440c4a3950a31059523ee5090605c907c66808664c932b549c"},
- {file = "safetensors-0.4.5.tar.gz", hash = "sha256:d73de19682deabb02524b3d5d1f8b3aaba94c72f1bbfc7911b9b9d5d391c0310"},
-]
-
-[package.extras]
-all = ["safetensors[jax]", "safetensors[numpy]", "safetensors[paddlepaddle]", "safetensors[pinned-tf]", "safetensors[quality]", "safetensors[testing]", "safetensors[torch]"]
-dev = ["safetensors[all]"]
-jax = ["flax (>=0.6.3)", "jax (>=0.3.25)", "jaxlib (>=0.3.25)", "safetensors[numpy]"]
-mlx = ["mlx (>=0.0.9)"]
-numpy = ["numpy (>=1.21.6)"]
-paddlepaddle = ["paddlepaddle (>=2.4.1)", "safetensors[numpy]"]
-pinned-tf = ["safetensors[numpy]", "tensorflow (==2.11.0)"]
-quality = ["black (==22.3)", "click (==8.0.4)", "flake8 (>=3.8.3)", "isort (>=5.5.4)"]
-tensorflow = ["safetensors[numpy]", "tensorflow (>=2.11.0)"]
-testing = ["h5py (>=3.7.0)", "huggingface-hub (>=0.12.1)", "hypothesis (>=6.70.2)", "pytest (>=7.2.0)", "pytest-benchmark (>=4.0.0)", "safetensors[numpy]", "setuptools-rust (>=1.5.2)"]
-torch = ["safetensors[numpy]", "torch (>=1.10)"]
-
-[[package]]
-name = "secretstorage"
-version = "3.3.3"
-description = "Python bindings to FreeDesktop.org Secret Service API"
-optional = false
-python-versions = ">=3.6"
-files = [
- {file = "SecretStorage-3.3.3-py3-none-any.whl", hash = "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99"},
- {file = "SecretStorage-3.3.3.tar.gz", hash = "sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77"},
-]
-
-[package.dependencies]
-cryptography = ">=2.0"
-jeepney = ">=0.6"
-
-[[package]]
-name = "setuptools"
-version = "69.2.0"
-description = "Easily download, build, install, upgrade, and uninstall Python packages"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "setuptools-69.2.0-py3-none-any.whl", hash = "sha256:c21c49fb1042386df081cb5d86759792ab89efca84cf114889191cd09aacc80c"},
- {file = "setuptools-69.2.0.tar.gz", hash = "sha256:0ff4183f8f42cd8fa3acea16c45205521a4ef28f73c6391d8a25e92893134f2e"},
-]
-
-[package.extras]
-docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"]
-testing = ["build[virtualenv]", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mypy (==1.9)", "packaging (>=23.2)", "pip (>=19.1)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff (>=0.2.1)", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"]
-testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.2)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"]
-
-[[package]]
-name = "six"
-version = "1.16.0"
-description = "Python 2 and 3 compatibility utilities"
-optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
-files = [
- {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
- {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
-]
-
-[[package]]
-name = "sniffio"
-version = "1.3.1"
-description = "Sniff out which async library your code is running under"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"},
- {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"},
-]
-
-[[package]]
-name = "sounddevice"
-version = "0.4.6"
-description = "Play and Record Sound with Python"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "sounddevice-0.4.6-py3-none-any.whl", hash = "sha256:5de768ba6fe56ad2b5aaa2eea794b76b73e427961c95acad2ee2ed7f866a4b20"},
- {file = "sounddevice-0.4.6-py3-none-macosx_10_6_x86_64.macosx_10_6_universal2.whl", hash = "sha256:8b0b806c205dd3e3cd5a97262b2482624fd21db7d47083b887090148a08051c8"},
- {file = "sounddevice-0.4.6-py3-none-win32.whl", hash = "sha256:e3ba6e674ffa8f79a591d744a1d4ab922fe5bdfd4faf8b25069a08e051010b7b"},
- {file = "sounddevice-0.4.6-py3-none-win_amd64.whl", hash = "sha256:7830d4f8f8570f2e5552942f81d96999c5fcd9a0b682d6fc5d5c5529df23be2c"},
- {file = "sounddevice-0.4.6.tar.gz", hash = "sha256:3236b78f15f0415bdf006a620cef073d0c0522851d66f4a961ed6d8eb1482fe9"},
-]
-
-[package.dependencies]
-CFFI = ">=1.0"
-
-[package.extras]
-numpy = ["NumPy"]
-
-[[package]]
-name = "srt"
-version = "3.5.3"
-description = "A tiny library for parsing, modifying, and composing SRT files."
-optional = false
-python-versions = ">=2.7"
-files = [
- {file = "srt-3.5.3.tar.gz", hash = "sha256:4884315043a4f0740fd1f878ed6caa376ac06d70e135f306a6dc44632eed0cc0"},
-]
-
-[[package]]
-name = "srt-equalizer"
-version = "0.1.10"
-description = "Transform subtitle line lengths, splitting into multiple subtitle fragments if necessary. "
-optional = false
-python-versions = "<4.0,>=3.8"
-files = [
- {file = "srt_equalizer-0.1.10-py3-none-any.whl", hash = "sha256:7b0cca73374ff7351badf2dc5266cabefdfd36b91ff736a535445562036cf8ed"},
- {file = "srt_equalizer-0.1.10.tar.gz", hash = "sha256:5f6b1b2c48b12bb1caab13822d7ddd0a54a87772b824a0aa2ba64c033d379353"},
-]
-
-[package.dependencies]
-srt = ">=3.5.3,<4.0.0"
-
-[[package]]
-name = "stable-ts"
-version = "2.17.5"
-description = "Modifies OpenAI's Whisper to produce more reliable timestamps."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "stable-ts-2.17.5.tar.gz", hash = "sha256:6b41af9753bf8678248c70f030d281b972529d52f9b42cd4c0016826df379e89"},
-]
-
-[package.dependencies]
-numpy = "*"
-openai-whisper = ">=20230314,<=20240930"
-torch = "*"
-torchaudio = "*"
-tqdm = "*"
-
-[package.extras]
-fw = ["faster-whisper"]
-hf = ["accelerate", "optimum", "transformers (>=4.23.0)"]
-
-[[package]]
-name = "sympy"
-version = "1.12"
-description = "Computer algebra system (CAS) in Python"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "sympy-1.12-py3-none-any.whl", hash = "sha256:c3588cd4295d0c0f603d0f2ae780587e64e2efeedb3521e46b9bb1d08d184fa5"},
- {file = "sympy-1.12.tar.gz", hash = "sha256:ebf595c8dac3e0fdc4152c51878b498396ec7f30e7a914d6071e674d49420fb8"},
-]
-
-[package.dependencies]
-mpmath = ">=0.19"
-
-[[package]]
-name = "tiktoken"
-version = "0.6.0"
-description = "tiktoken is a fast BPE tokeniser for use with OpenAI's models"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "tiktoken-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:277de84ccd8fa12730a6b4067456e5cf72fef6300bea61d506c09e45658d41ac"},
- {file = "tiktoken-0.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9c44433f658064463650d61387623735641dcc4b6c999ca30bc0f8ba3fccaf5c"},
- {file = "tiktoken-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afb9a2a866ae6eef1995ab656744287a5ac95acc7e0491c33fad54d053288ad3"},
- {file = "tiktoken-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c62c05b3109fefca26fedb2820452a050074ad8e5ad9803f4652977778177d9f"},
- {file = "tiktoken-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0ef917fad0bccda07bfbad835525bbed5f3ab97a8a3e66526e48cdc3e7beacf7"},
- {file = "tiktoken-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e095131ab6092d0769a2fda85aa260c7c383072daec599ba9d8b149d2a3f4d8b"},
- {file = "tiktoken-0.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:05b344c61779f815038292a19a0c6eb7098b63c8f865ff205abb9ea1b656030e"},
- {file = "tiktoken-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cefb9870fb55dca9e450e54dbf61f904aab9180ff6fe568b61f4db9564e78871"},
- {file = "tiktoken-0.6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:702950d33d8cabc039845674107d2e6dcabbbb0990ef350f640661368df481bb"},
- {file = "tiktoken-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8d49d076058f23254f2aff9af603863c5c5f9ab095bc896bceed04f8f0b013a"},
- {file = "tiktoken-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:430bc4e650a2d23a789dc2cdca3b9e5e7eb3cd3935168d97d43518cbb1f9a911"},
- {file = "tiktoken-0.6.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:293cb8669757301a3019a12d6770bd55bec38a4d3ee9978ddbe599d68976aca7"},
- {file = "tiktoken-0.6.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7bd1a288b7903aadc054b0e16ea78e3171f70b670e7372432298c686ebf9dd47"},
- {file = "tiktoken-0.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac76e000183e3b749634968a45c7169b351e99936ef46f0d2353cd0d46c3118d"},
- {file = "tiktoken-0.6.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:17cc8a4a3245ab7d935c83a2db6bb71619099d7284b884f4b2aea4c74f2f83e3"},
- {file = "tiktoken-0.6.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:284aebcccffe1bba0d6571651317df6a5b376ff6cfed5aeb800c55df44c78177"},
- {file = "tiktoken-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c1a3a5d33846f8cd9dd3b7897c1d45722f48625a587f8e6f3d3e85080559be8"},
- {file = "tiktoken-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6318b2bb2337f38ee954fd5efa82632c6e5ced1d52a671370fa4b2eff1355e91"},
- {file = "tiktoken-0.6.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1f5f0f2ed67ba16373f9a6013b68da298096b27cd4e1cf276d2d3868b5c7efd1"},
- {file = "tiktoken-0.6.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:75af4c0b16609c2ad02581f3cdcd1fb698c7565091370bf6c0cf8624ffaba6dc"},
- {file = "tiktoken-0.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:45577faf9a9d383b8fd683e313cf6df88b6076c034f0a16da243bb1c139340c3"},
- {file = "tiktoken-0.6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7c1492ab90c21ca4d11cef3a236ee31a3e279bb21b3fc5b0e2210588c4209e68"},
- {file = "tiktoken-0.6.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e2b380c5b7751272015400b26144a2bab4066ebb8daae9c3cd2a92c3b508fe5a"},
- {file = "tiktoken-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9f497598b9f58c99cbc0eb764b4a92272c14d5203fc713dd650b896a03a50ad"},
- {file = "tiktoken-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e65e8bd6f3f279d80f1e1fbd5f588f036b9a5fa27690b7f0cc07021f1dfa0839"},
- {file = "tiktoken-0.6.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5f1495450a54e564d236769d25bfefbf77727e232d7a8a378f97acddee08c1ae"},
- {file = "tiktoken-0.6.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6c4e4857d99f6fb4670e928250835b21b68c59250520a1941618b5b4194e20c3"},
- {file = "tiktoken-0.6.0-cp38-cp38-win_amd64.whl", hash = "sha256:168d718f07a39b013032741867e789971346df8e89983fe3c0ef3fbd5a0b1cb9"},
- {file = "tiktoken-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:47fdcfe11bd55376785a6aea8ad1db967db7f66ea81aed5c43fad497521819a4"},
- {file = "tiktoken-0.6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fb7d2ccbf1a7784810aff6b80b4012fb42c6fc37eaa68cb3b553801a5cc2d1fc"},
- {file = "tiktoken-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ccb7a111ee76af5d876a729a347f8747d5ad548e1487eeea90eaf58894b3138"},
- {file = "tiktoken-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2048e1086b48e3c8c6e2ceeac866561374cd57a84622fa49a6b245ffecb7744"},
- {file = "tiktoken-0.6.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:07f229a5eb250b6403a61200199cecf0aac4aa23c3ecc1c11c1ca002cbb8f159"},
- {file = "tiktoken-0.6.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:432aa3be8436177b0db5a2b3e7cc28fd6c693f783b2f8722539ba16a867d0c6a"},
- {file = "tiktoken-0.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:8bfe8a19c8b5c40d121ee7938cd9c6a278e5b97dc035fd61714b4f0399d2f7a1"},
- {file = "tiktoken-0.6.0.tar.gz", hash = "sha256:ace62a4ede83c75b0374a2ddfa4b76903cf483e9cb06247f566be3bf14e6beed"},
-]
-
-[package.dependencies]
-regex = ">=2022.1.18"
-requests = ">=2.26.0"
-
-[package.extras]
-blobfile = ["blobfile (>=2)"]
-
-[[package]]
-name = "tokenizers"
-version = "0.20.1"
-description = ""
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "tokenizers-0.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:439261da7c0a5c88bda97acb284d49fbdaf67e9d3b623c0bfd107512d22787a9"},
- {file = "tokenizers-0.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:03dae629d99068b1ea5416d50de0fea13008f04129cc79af77a2a6392792d93c"},
- {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b61f561f329ffe4b28367798b89d60c4abf3f815d37413b6352bc6412a359867"},
- {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ec870fce1ee5248a10be69f7a8408a234d6f2109f8ea827b4f7ecdbf08c9fd15"},
- {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d388d1ea8b7447da784e32e3b86a75cce55887e3b22b31c19d0b186b1c677800"},
- {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:299c85c1d21135bc01542237979bf25c32efa0d66595dd0069ae259b97fb2dbe"},
- {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e96f6c14c9752bb82145636b614d5a78e9cde95edfbe0a85dad0dd5ddd6ec95c"},
- {file = "tokenizers-0.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc9e95ad49c932b80abfbfeaf63b155761e695ad9f8a58c52a47d962d76e310f"},
- {file = "tokenizers-0.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:f22dee205329a636148c325921c73cf3e412e87d31f4d9c3153b302a0200057b"},
- {file = "tokenizers-0.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2ffd9a8895575ac636d44500c66dffaef133823b6b25067604fa73bbc5ec09d"},
- {file = "tokenizers-0.20.1-cp310-none-win32.whl", hash = "sha256:2847843c53f445e0f19ea842a4e48b89dd0db4e62ba6e1e47a2749d6ec11f50d"},
- {file = "tokenizers-0.20.1-cp310-none-win_amd64.whl", hash = "sha256:f9aa93eacd865f2798b9e62f7ce4533cfff4f5fbd50c02926a78e81c74e432cd"},
- {file = "tokenizers-0.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:4a717dcb08f2dabbf27ae4b6b20cbbb2ad7ed78ce05a829fae100ff4b3c7ff15"},
- {file = "tokenizers-0.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3f84dad1ff1863c648d80628b1b55353d16303431283e4efbb6ab1af56a75832"},
- {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:929c8f3afa16a5130a81ab5079c589226273ec618949cce79b46d96e59a84f61"},
- {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d10766473954397e2d370f215ebed1cc46dcf6fd3906a2a116aa1d6219bfedc3"},
- {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9300fac73ddc7e4b0330acbdda4efaabf74929a4a61e119a32a181f534a11b47"},
- {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0ecaf7b0e39caeb1aa6dd6e0975c405716c82c1312b55ac4f716ef563a906969"},
- {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5170be9ec942f3d1d317817ced8d749b3e1202670865e4fd465e35d8c259de83"},
- {file = "tokenizers-0.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef3f1ae08fa9aea5891cbd69df29913e11d3841798e0bfb1ff78b78e4e7ea0a4"},
- {file = "tokenizers-0.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ee86d4095d3542d73579e953c2e5e07d9321af2ffea6ecc097d16d538a2dea16"},
- {file = "tokenizers-0.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:86dcd08da163912e17b27bbaba5efdc71b4fbffb841530fdb74c5707f3c49216"},
- {file = "tokenizers-0.20.1-cp311-none-win32.whl", hash = "sha256:9af2dc4ee97d037bc6b05fa4429ddc87532c706316c5e11ce2f0596dfcfa77af"},
- {file = "tokenizers-0.20.1-cp311-none-win_amd64.whl", hash = "sha256:899152a78b095559c287b4c6d0099469573bb2055347bb8154db106651296f39"},
- {file = "tokenizers-0.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:407ab666b38e02228fa785e81f7cf79ef929f104bcccf68a64525a54a93ceac9"},
- {file = "tokenizers-0.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2f13a2d16032ebc8bd812eb8099b035ac65887d8f0c207261472803b9633cf3e"},
- {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e98eee4dca22849fbb56a80acaa899eec5b72055d79637dd6aa15d5e4b8628c9"},
- {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:47c1bcdd61e61136087459cb9e0b069ff23b5568b008265e5cbc927eae3387ce"},
- {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:128c1110e950534426e2274837fc06b118ab5f2fa61c3436e60e0aada0ccfd67"},
- {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e2e2d47a819d2954f2c1cd0ad51bb58ffac6f53a872d5d82d65d79bf76b9896d"},
- {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bdd67a0e3503a9a7cf8bc5a4a49cdde5fa5bada09a51e4c7e1c73900297539bd"},
- {file = "tokenizers-0.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:689b93d2e26d04da337ac407acec8b5d081d8d135e3e5066a88edd5bdb5aff89"},
- {file = "tokenizers-0.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0c6a796ddcd9a19ad13cf146997cd5895a421fe6aec8fd970d69f9117bddb45c"},
- {file = "tokenizers-0.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3ea919687aa7001a8ff1ba36ac64f165c4e89035f57998fa6cedcfd877be619d"},
- {file = "tokenizers-0.20.1-cp312-none-win32.whl", hash = "sha256:6d3ac5c1f48358ffe20086bf065e843c0d0a9fce0d7f0f45d5f2f9fba3609ca5"},
- {file = "tokenizers-0.20.1-cp312-none-win_amd64.whl", hash = "sha256:b0874481aea54a178f2bccc45aa2d0c99cd3f79143a0948af6a9a21dcc49173b"},
- {file = "tokenizers-0.20.1-cp37-cp37m-macosx_10_12_x86_64.whl", hash = "sha256:96af92e833bd44760fb17f23f402e07a66339c1dcbe17d79a9b55bb0cc4f038e"},
- {file = "tokenizers-0.20.1-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:65f34e5b731a262dfa562820818533c38ce32a45864437f3d9c82f26c139ca7f"},
- {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17f98fccb5c12ab1ce1f471731a9cd86df5d4bd2cf2880c5a66b229802d96145"},
- {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b8c0fc3542cf9370bf92c932eb71bdeb33d2d4aeeb4126d9fd567b60bd04cb30"},
- {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b39356df4575d37f9b187bb623aab5abb7b62c8cb702867a1768002f814800c"},
- {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bfdad27b0e50544f6b838895a373db6114b85112ba5c0cefadffa78d6daae563"},
- {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:094663dd0e85ee2e573126918747bdb40044a848fde388efb5b09d57bc74c680"},
- {file = "tokenizers-0.20.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14e4cf033a2aa207d7ac790e91adca598b679999710a632c4a494aab0fc3a1b2"},
- {file = "tokenizers-0.20.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9310951c92c9fb91660de0c19a923c432f110dbfad1a2d429fbc44fa956bf64f"},
- {file = "tokenizers-0.20.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:05e41e302c315bd2ed86c02e917bf03a6cf7d2f652c9cee1a0eb0d0f1ca0d32c"},
- {file = "tokenizers-0.20.1-cp37-none-win32.whl", hash = "sha256:212231ab7dfcdc879baf4892ca87c726259fa7c887e1688e3f3cead384d8c305"},
- {file = "tokenizers-0.20.1-cp37-none-win_amd64.whl", hash = "sha256:896195eb9dfdc85c8c052e29947169c1fcbe75a254c4b5792cdbd451587bce85"},
- {file = "tokenizers-0.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:741fb22788482d09d68e73ece1495cfc6d9b29a06c37b3df90564a9cfa688e6d"},
- {file = "tokenizers-0.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:10be14ebd8082086a342d969e17fc2d6edc856c59dbdbddd25f158fa40eaf043"},
- {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:514cf279b22fa1ae0bc08e143458c74ad3b56cd078b319464959685a35c53d5e"},
- {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a647c5b7cb896d6430cf3e01b4e9a2d77f719c84cefcef825d404830c2071da2"},
- {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7cdf379219e1e1dd432091058dab325a2e6235ebb23e0aec8d0508567c90cd01"},
- {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ba72260449e16c4c2f6f3252823b059fbf2d31b32617e582003f2b18b415c39"},
- {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:910b96ed87316e4277b23c7bcaf667ce849c7cc379a453fa179e7e09290eeb25"},
- {file = "tokenizers-0.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e53975a6694428a0586534cc1354b2408d4e010a3103117f617cbb550299797c"},
- {file = "tokenizers-0.20.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:07c4b7be58da142b0730cc4e5fd66bb7bf6f57f4986ddda73833cd39efef8a01"},
- {file = "tokenizers-0.20.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b605c540753e62199bf15cf69c333e934077ef2350262af2ccada46026f83d1c"},
- {file = "tokenizers-0.20.1-cp38-none-win32.whl", hash = "sha256:88b3bc76ab4db1ab95ead623d49c95205411e26302cf9f74203e762ac7e85685"},
- {file = "tokenizers-0.20.1-cp38-none-win_amd64.whl", hash = "sha256:d412a74cf5b3f68a90c615611a5aa4478bb303d1c65961d22db45001df68afcb"},
- {file = "tokenizers-0.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a25dcb2f41a0a6aac31999e6c96a75e9152fa0127af8ece46c2f784f23b8197a"},
- {file = "tokenizers-0.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a12c3cebb8c92e9c35a23ab10d3852aee522f385c28d0b4fe48c0b7527d59762"},
- {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02e18da58cf115b7c40de973609c35bde95856012ba42a41ee919c77935af251"},
- {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f326a1ac51ae909b9760e34671c26cd0dfe15662f447302a9d5bb2d872bab8ab"},
- {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b4872647ea6f25224e2833b044b0b19084e39400e8ead3cfe751238b0802140"},
- {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce6238a3311bb8e4c15b12600927d35c267b92a52c881ef5717a900ca14793f7"},
- {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57b7a8880b208866508b06ce365dc631e7a2472a3faa24daa430d046fb56c885"},
- {file = "tokenizers-0.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a908c69c2897a68f412aa05ba38bfa87a02980df70f5a72fa8490479308b1f2d"},
- {file = "tokenizers-0.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:da1001aa46f4490099c82e2facc4fbc06a6a32bf7de3918ba798010954b775e0"},
- {file = "tokenizers-0.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:42c097390e2f0ed0a5c5d569e6669dd4e9fff7b31c6a5ce6e9c66a61687197de"},
- {file = "tokenizers-0.20.1-cp39-none-win32.whl", hash = "sha256:3d4d218573a3d8b121a1f8c801029d70444ffb6d8f129d4cca1c7b672ee4a24c"},
- {file = "tokenizers-0.20.1-cp39-none-win_amd64.whl", hash = "sha256:37d1e6f616c84fceefa7c6484a01df05caf1e207669121c66213cb5b2911d653"},
- {file = "tokenizers-0.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48689da7a395df41114f516208d6550e3e905e1239cc5ad386686d9358e9cef0"},
- {file = "tokenizers-0.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:712f90ea33f9bd2586b4a90d697c26d56d0a22fd3c91104c5858c4b5b6489a79"},
- {file = "tokenizers-0.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:359eceb6a620c965988fc559cebc0a98db26713758ec4df43fb76d41486a8ed5"},
- {file = "tokenizers-0.20.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0d3caf244ce89d24c87545aafc3448be15870096e796c703a0d68547187192e1"},
- {file = "tokenizers-0.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03b03cf8b9a32254b1bf8a305fb95c6daf1baae0c1f93b27f2b08c9759f41dee"},
- {file = "tokenizers-0.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:218e5a3561561ea0f0ef1559c6d95b825308dbec23fb55b70b92589e7ff2e1e8"},
- {file = "tokenizers-0.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f40df5e0294a95131cc5f0e0eb91fe86d88837abfbee46b9b3610b09860195a7"},
- {file = "tokenizers-0.20.1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl", hash = "sha256:08aaa0d72bb65058e8c4b0455f61b840b156c557e2aca57627056624c3a93976"},
- {file = "tokenizers-0.20.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:998700177b45f70afeb206ad22c08d9e5f3a80639dae1032bf41e8cbc4dada4b"},
- {file = "tokenizers-0.20.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62f7fbd3c2c38b179556d879edae442b45f68312019c3a6013e56c3947a4e648"},
- {file = "tokenizers-0.20.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31e87fca4f6bbf5cc67481b562147fe932f73d5602734de7dd18a8f2eee9c6dd"},
- {file = "tokenizers-0.20.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:956f21d359ae29dd51ca5726d2c9a44ffafa041c623f5aa33749da87cfa809b9"},
- {file = "tokenizers-0.20.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:1fbbaf17a393c78d8aedb6a334097c91cb4119a9ced4764ab8cfdc8d254dc9f9"},
- {file = "tokenizers-0.20.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ebe63e31f9c1a970c53866d814e35ec2ec26fda03097c486f82f3891cee60830"},
- {file = "tokenizers-0.20.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:81970b80b8ac126910295f8aab2d7ef962009ea39e0d86d304769493f69aaa1e"},
- {file = "tokenizers-0.20.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:130e35e76f9337ed6c31be386e75d4925ea807055acf18ca1a9b0eec03d8fe23"},
- {file = "tokenizers-0.20.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd28a8614f5c82a54ab2463554e84ad79526c5184cf4573bbac2efbbbcead457"},
- {file = "tokenizers-0.20.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9041ee665d0fa7f5c4ccf0f81f5e6b7087f797f85b143c094126fc2611fec9d0"},
- {file = "tokenizers-0.20.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:62eb9daea2a2c06bcd8113a5824af8ef8ee7405d3a71123ba4d52c79bb3d9f1a"},
- {file = "tokenizers-0.20.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f861889707b54a9ab1204030b65fd6c22bdd4a95205deec7994dc22a8baa2ea4"},
- {file = "tokenizers-0.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:89d5c337d74ea6e5e7dc8af124cf177be843bbb9ca6e58c01f75ea103c12c8a9"},
- {file = "tokenizers-0.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:0b7f515c83397e73292accdbbbedc62264e070bae9682f06061e2ddce67cacaf"},
- {file = "tokenizers-0.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e0305fc1ec6b1e5052d30d9c1d5c807081a7bd0cae46a33d03117082e91908c"},
- {file = "tokenizers-0.20.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5dc611e6ac0fa00a41de19c3bf6391a05ea201d2d22b757d63f5491ec0e67faa"},
- {file = "tokenizers-0.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5ffe0d7f7bfcfa3b2585776ecf11da2e01c317027c8573c78ebcb8985279e23"},
- {file = "tokenizers-0.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:e7edb8ec12c100d5458d15b1e47c0eb30ad606a05641f19af7563bc3d1608c14"},
- {file = "tokenizers-0.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:de291633fb9303555793cc544d4a86e858da529b7d0b752bcaf721ae1d74b2c9"},
- {file = "tokenizers-0.20.1.tar.gz", hash = "sha256:84edcc7cdeeee45ceedb65d518fffb77aec69311c9c8e30f77ad84da3025f002"},
-]
-
-[package.dependencies]
-huggingface-hub = ">=0.16.4,<1.0"
-
-[package.extras]
-dev = ["tokenizers[testing]"]
-docs = ["setuptools-rust", "sphinx", "sphinx-rtd-theme"]
-testing = ["black (==22.3)", "datasets", "numpy", "pytest", "requests", "ruff"]
-
-[[package]]
-name = "toml"
-version = "0.10.2"
-description = "Python Library for Tom's Obvious, Minimal Language"
-optional = false
-python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
-files = [
- {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"},
- {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
-]
-
-[[package]]
-name = "tomli"
-version = "2.0.1"
-description = "A lil' TOML parser"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
- {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
-]
-
-[[package]]
-name = "tomlkit"
-version = "0.12.4"
-description = "Style preserving TOML library"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "tomlkit-0.12.4-py3-none-any.whl", hash = "sha256:5cd82d48a3dd89dee1f9d64420aa20ae65cfbd00668d6f094d7578a78efbb77b"},
- {file = "tomlkit-0.12.4.tar.gz", hash = "sha256:7ca1cfc12232806517a8515047ba66a19369e71edf2439d0f5824f91032b6cc3"},
-]
-
-[[package]]
-name = "torch"
-version = "2.2.1"
-description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration"
-optional = false
-python-versions = ">=3.8.0"
-files = [
- {file = "torch-2.2.1-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:8d3bad336dd2c93c6bcb3268e8e9876185bda50ebde325ef211fb565c7d15273"},
- {file = "torch-2.2.1-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:5297f13370fdaca05959134b26a06a7f232ae254bf2e11a50eddec62525c9006"},
- {file = "torch-2.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:5f5dee8433798888ca1415055f5e3faf28a3bad660e4c29e1014acd3275ab11a"},
- {file = "torch-2.2.1-cp310-none-macosx_10_9_x86_64.whl", hash = "sha256:b6d78338acabf1fb2e88bf4559d837d30230cf9c3e4337261f4d83200df1fcbe"},
- {file = "torch-2.2.1-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:6ab3ea2e29d1aac962e905142bbe50943758f55292f1b4fdfb6f4792aae3323e"},
- {file = "torch-2.2.1-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:d86664ec85902967d902e78272e97d1aff1d331f7619d398d3ffab1c9b8e9157"},
- {file = "torch-2.2.1-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:d6227060f268894f92c61af0a44c0d8212e19cb98d05c20141c73312d923bc0a"},
- {file = "torch-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:77e990af75fb1675490deb374d36e726f84732cd5677d16f19124934b2409ce9"},
- {file = "torch-2.2.1-cp311-none-macosx_10_9_x86_64.whl", hash = "sha256:46085e328d9b738c261f470231e987930f4cc9472d9ffb7087c7a1343826ac51"},
- {file = "torch-2.2.1-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:2d9e7e5ecbb002257cf98fae13003abbd620196c35f85c9e34c2adfb961321ec"},
- {file = "torch-2.2.1-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:ada53aebede1c89570e56861b08d12ba4518a1f8b82d467c32665ec4d1f4b3c8"},
- {file = "torch-2.2.1-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:be21d4c41ecebed9e99430dac87de1439a8c7882faf23bba7fea3fea7b906ac1"},
- {file = "torch-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:79848f46196750367dcdf1d2132b722180b9d889571e14d579ae82d2f50596c5"},
- {file = "torch-2.2.1-cp312-none-macosx_10_9_x86_64.whl", hash = "sha256:7ee804847be6be0032fbd2d1e6742fea2814c92bebccb177f0d3b8e92b2d2b18"},
- {file = "torch-2.2.1-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:84b2fb322ab091039fdfe74e17442ff046b258eb5e513a28093152c5b07325a7"},
- {file = "torch-2.2.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:5c0c83aa7d94569997f1f474595e808072d80b04d34912ce6f1a0e1c24b0c12a"},
- {file = "torch-2.2.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:91a1b598055ba06b2c386415d2e7f6ac818545e94c5def597a74754940188513"},
- {file = "torch-2.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:8f93ddf3001ecec16568390b507652644a3a103baa72de3ad3b9c530e3277098"},
- {file = "torch-2.2.1-cp38-none-macosx_10_9_x86_64.whl", hash = "sha256:0e8bdd4c77ac2584f33ee14c6cd3b12767b4da508ec4eed109520be7212d1069"},
- {file = "torch-2.2.1-cp38-none-macosx_11_0_arm64.whl", hash = "sha256:6a21bcd7076677c97ca7db7506d683e4e9db137e8420eb4a68fb67c3668232a7"},
- {file = "torch-2.2.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:f1b90ac61f862634039265cd0f746cc9879feee03ff962c803486301b778714b"},
- {file = "torch-2.2.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:ed9e29eb94cd493b36bca9cb0b1fd7f06a0688215ad1e4b3ab4931726e0ec092"},
- {file = "torch-2.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:c47bc25744c743f3835831a20efdcfd60aeb7c3f9804a213f61e45803d16c2a5"},
- {file = "torch-2.2.1-cp39-none-macosx_10_9_x86_64.whl", hash = "sha256:0952549bcb43448c8d860d5e3e947dd18cbab491b14638e21750cb3090d5ad3e"},
- {file = "torch-2.2.1-cp39-none-macosx_11_0_arm64.whl", hash = "sha256:26bd2272ec46fc62dcf7d24b2fb284d44fcb7be9d529ebf336b9860350d674ed"},
-]
-
-[package.dependencies]
-filelock = "*"
-fsspec = "*"
-jinja2 = "*"
-networkx = "*"
-nvidia-cublas-cu12 = {version = "12.1.3.1", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cuda-cupti-cu12 = {version = "12.1.105", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cuda-nvrtc-cu12 = {version = "12.1.105", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cuda-runtime-cu12 = {version = "12.1.105", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cudnn-cu12 = {version = "8.9.2.26", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cufft-cu12 = {version = "11.0.2.54", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-curand-cu12 = {version = "10.3.2.106", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cusolver-cu12 = {version = "11.4.5.107", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cusparse-cu12 = {version = "12.1.0.106", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-nccl-cu12 = {version = "2.19.3", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-nvtx-cu12 = {version = "12.1.105", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-sympy = "*"
-triton = {version = "2.2.0", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\" and python_version < \"3.12\""}
-typing-extensions = ">=4.8.0"
-
-[package.extras]
-opt-einsum = ["opt-einsum (>=3.3)"]
-optree = ["optree (>=0.9.1)"]
-
-[[package]]
-name = "torch"
-version = "2.2.1+cu121"
-description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration"
-optional = false
-python-versions = ">=3.8.0"
-files = [
- {file = "torch-2.2.1+cu121-cp310-cp310-linux_x86_64.whl", hash = "sha256:1adf430f01ff649c848ac021785e18007b0714fdde68e4e65bd0c640bf3fb8e1"},
- {file = "torch-2.2.1+cu121-cp310-cp310-win_amd64.whl", hash = "sha256:d4491bea61043ad053d0a0d6423008f6333dfb68f366160bf1aa7dfb2c0f2e9c"},
- {file = "torch-2.2.1+cu121-cp311-cp311-linux_x86_64.whl", hash = "sha256:23bb28ba800f25a9d33d51768bf5fdefa0220cbc5cd9a17f22d2a42628359468"},
- {file = "torch-2.2.1+cu121-cp311-cp311-win_amd64.whl", hash = "sha256:5dfab54d4e28797c8f4f1f9543a0a2b3d27113fa40eb202f8f49af1d865f9573"},
- {file = "torch-2.2.1+cu121-cp312-cp312-linux_x86_64.whl", hash = "sha256:362751719d4b319b2e7efcc7aea01332602af06aef1c3d1f0653639e6906f23c"},
- {file = "torch-2.2.1+cu121-cp312-cp312-win_amd64.whl", hash = "sha256:240193aecc37548a381e6d1db74a148f80f9230df9547a4f1916187805456a0a"},
- {file = "torch-2.2.1+cu121-cp38-cp38-linux_x86_64.whl", hash = "sha256:3880eb811b13f8f1a5fc3282e455674b9a9fa673ab256f0638e2b4f4952516c3"},
- {file = "torch-2.2.1+cu121-cp38-cp38-win_amd64.whl", hash = "sha256:fe5a7eefa94f3d00577b4eaae7c3038de97cb2ac5bc7ceaf46ed1455cf7a5ba7"},
- {file = "torch-2.2.1+cu121-cp39-cp39-linux_x86_64.whl", hash = "sha256:1cb379874138e798c02b41962dd9d4ec0b063a8ca45a51097f326615477c9bd0"},
- {file = "torch-2.2.1+cu121-cp39-cp39-win_amd64.whl", hash = "sha256:2e90c6397ae21663ade6cf55faa88e82ae47e0c42da98e02564218f8de94a6bf"},
-]
-
-[package.dependencies]
-filelock = "*"
-fsspec = "*"
-jinja2 = "*"
-networkx = "*"
-nvidia-cublas-cu12 = {version = "12.1.3.1", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cuda-cupti-cu12 = {version = "12.1.105", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cuda-nvrtc-cu12 = {version = "12.1.105", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cuda-runtime-cu12 = {version = "12.1.105", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cudnn-cu12 = {version = "8.9.2.26", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cufft-cu12 = {version = "11.0.2.54", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-curand-cu12 = {version = "10.3.2.106", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cusolver-cu12 = {version = "11.4.5.107", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-cusparse-cu12 = {version = "12.1.0.106", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-nccl-cu12 = {version = "2.19.3", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-nvidia-nvtx-cu12 = {version = "12.1.105", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\""}
-sympy = "*"
-triton = {version = "2.2.0", markers = "platform_system == \"Linux\" and platform_machine == \"x86_64\" and python_version < \"3.12\""}
-typing-extensions = ">=4.8.0"
-
-[package.extras]
-opt-einsum = ["opt-einsum (>=3.3)"]
-optree = ["optree (>=0.9.1)"]
-
-[package.source]
-type = "legacy"
-url = "https://download.pytorch.org/whl/cu121"
-reference = "torch"
-
-[[package]]
-name = "torchaudio"
-version = "2.2.1"
-description = "An audio package for PyTorch"
-optional = false
-python-versions = "*"
-files = [
- {file = "torchaudio-2.2.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:580eefd764a01a64d5b6aa260c0c47974be6a6964892d54029a73b17f4611fcd"},
- {file = "torchaudio-2.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ad55c2069b27bbe18e14783a202e3f3f8082fe9e59281436ba797edb0fc94d5"},
- {file = "torchaudio-2.2.1-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:55d23986254f7af689695f3fc214c4aa3e73dc931289ecdba7262d73fea7af7a"},
- {file = "torchaudio-2.2.1-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:b916b7764698ba9319aa3b25519139892de8665d84438969bac5e1d8578c6a11"},
- {file = "torchaudio-2.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:281cd4bdb9e65c0618a028b809df9e06f9bd9592aeef8f2b37b4d8a788ce5f2b"},
- {file = "torchaudio-2.2.1-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:274cb8474bc1e56b768ef347d3188661c5a9d5e68e2df56fc0aff11cc73c916a"},
- {file = "torchaudio-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e62c27b17672cc2bdd9663681e533000f9c0984e6a0f3d455f7051bc005bb02"},
- {file = "torchaudio-2.2.1-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:7df7d5d9100116be38ff7b27b628820dca4a9e3fe79394605141d339e3b3e46d"},
- {file = "torchaudio-2.2.1-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:20b2965db4f843021636f53d3fab1075c3f8959c450c647629124d24c7e6cbb0"},
- {file = "torchaudio-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:63dd0e840bcf2e4aceb7a98daccfaf7a2a5b3a927647b98bbef449b0b190f2cc"},
- {file = "torchaudio-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2c232dc8bee97d303b90833ba934d8905eb7326456236efcd9fa71ccb92fd363"},
- {file = "torchaudio-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2419387cf04d33047369337bf09c00c2a7673a8f52f80258454c7eca7d205d23"},
- {file = "torchaudio-2.2.1-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:2483c0620a68a136359ae90c893608ad5cd73091fb0351b94d33af126a0e3d67"},
- {file = "torchaudio-2.2.1-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:bd389f33b7dbfc44e5f4070fc6db00cc560992bea8378a952889acfd772b7022"},
- {file = "torchaudio-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:d5af725a327b79f3bd8389c53ec51554ee003c18434fc47e68da49b09900132e"},
- {file = "torchaudio-2.2.1-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:81ef88d7693e3b99007d1ee742fd81b9a92399ecbf88eb7ed69949443005ffba"},
- {file = "torchaudio-2.2.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f487a7d3177ae6af016750850ee93788e880218a1a310bc6c76901e212f91cd3"},
- {file = "torchaudio-2.2.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:bee5478ec2cb7d0eaa97023d817aa4914010e1ab0c266f64ef1b0db893aceb49"},
- {file = "torchaudio-2.2.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:a4462b3f214f60b6b8f78e12a4cf1291c9bc353deed709ac3dfdedbed513a7a3"},
- {file = "torchaudio-2.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:4bc43d11d9e086f0dfb29f6ea99517d8ec06fa80d97283f2c8b83c4cd467dd1a"},
- {file = "torchaudio-2.2.1-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:0339fe78ed9c29f704296761b28bb055b5350625ff503ad781704397934e6b58"},
- {file = "torchaudio-2.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68b1d9f8ffe9b26ef04e80d82ae2dc2f74b1a1eb64c3e8ad21b525802b3bc7ac"},
- {file = "torchaudio-2.2.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:3962fea5d2511c9ab2b1dd515b45ec44d0c28e51f3b05c0b9fa7bbcc3c213bc1"},
- {file = "torchaudio-2.2.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:cb2da08abb7b68dc7b0105748b1a736dd33329f841374013ec02c54e04bedf29"},
- {file = "torchaudio-2.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:54996977ab1c875729e8dedc4695609ca58f876c23756c79979c6b50136b3385"},
-]
-
-[package.dependencies]
-torch = "2.2.1"
-
-[[package]]
-name = "torchaudio"
-version = "2.2.1+cu121"
-description = "An audio package for PyTorch"
-optional = false
-python-versions = "*"
-files = [
- {file = "torchaudio-2.2.1+cu121-cp310-cp310-linux_x86_64.whl", hash = "sha256:23f6236429e2bf676b820e8e7221a1d58aaf908bff2ba2665aa852df71a97961"},
- {file = "torchaudio-2.2.1+cu121-cp310-cp310-win_amd64.whl", hash = "sha256:cd8495e5dfdd21bf28c95c731768fdea62b24977388b95805739cda538b75a44"},
- {file = "torchaudio-2.2.1+cu121-cp311-cp311-linux_x86_64.whl", hash = "sha256:609002b0e6dff440fcd6a63d15c03c3d374e214e7a8aa61c2ef4a528ba644c39"},
- {file = "torchaudio-2.2.1+cu121-cp311-cp311-win_amd64.whl", hash = "sha256:44c431c29045ddc4ad68195d91833ada9dbc38e26bf0a1f12a3f6a46b356b45a"},
- {file = "torchaudio-2.2.1+cu121-cp312-cp312-linux_x86_64.whl", hash = "sha256:a6a9450cf4901f900cc3011129f9e2a883ffb4ef81b3ed9e27bc11055d374cae"},
- {file = "torchaudio-2.2.1+cu121-cp312-cp312-win_amd64.whl", hash = "sha256:c7961b4901eee0272a4ac3bc6c238d5f73d470fdc65a63eb81e6f9d80c237c9c"},
- {file = "torchaudio-2.2.1+cu121-cp38-cp38-linux_x86_64.whl", hash = "sha256:5d4fedaea3375bc850fbd908e86d5bf8601ba7d7823c521debe8d8de5c226588"},
- {file = "torchaudio-2.2.1+cu121-cp38-cp38-win_amd64.whl", hash = "sha256:1aa2f7013f6207675d8612985d3f16f35203d74a5fc28af4f5cc27876231d8ea"},
- {file = "torchaudio-2.2.1+cu121-cp39-cp39-linux_x86_64.whl", hash = "sha256:2d049cb09b0f9fe104d20a0a470216fc5ce8f925bd49856e6580e2d959f5b328"},
- {file = "torchaudio-2.2.1+cu121-cp39-cp39-win_amd64.whl", hash = "sha256:ddc17564eba374c06b34568e2f4517de6b2bad288b19fec04b5d0f290fffff7d"},
-]
-
-[package.dependencies]
-torch = "2.2.1"
-
-[package.source]
-type = "legacy"
-url = "https://download.pytorch.org/whl/cu121"
-reference = "torch"
-
-[[package]]
-name = "tqdm"
-version = "4.66.2"
-description = "Fast, Extensible Progress Meter"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "tqdm-4.66.2-py3-none-any.whl", hash = "sha256:1ee4f8a893eb9bef51c6e35730cebf234d5d0b6bd112b0271e10ed7c24a02bd9"},
- {file = "tqdm-4.66.2.tar.gz", hash = "sha256:6cd52cdf0fef0e0f543299cfc96fec90d7b8a7e88745f411ec33eb44d5ed3531"},
-]
-
-[package.dependencies]
-colorama = {version = "*", markers = "platform_system == \"Windows\""}
-
-[package.extras]
-dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"]
-notebook = ["ipywidgets (>=6)"]
-slack = ["slack-sdk"]
-telegram = ["requests"]
-
-[[package]]
-name = "transformers"
-version = "4.46.1"
-description = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow"
-optional = false
-python-versions = ">=3.8.0"
-files = [
- {file = "transformers-4.46.1-py3-none-any.whl", hash = "sha256:f77b251a648fd32e3d14b5e7e27c913b7c29154940f519e4c8c3aa6061df0f05"},
- {file = "transformers-4.46.1.tar.gz", hash = "sha256:16d79927d772edaf218820a96f9254e2211f9cd7fb3c308562d2d636c964a68c"},
-]
-
-[package.dependencies]
-filelock = "*"
-huggingface-hub = ">=0.23.2,<1.0"
-numpy = ">=1.17"
-packaging = ">=20.0"
-pyyaml = ">=5.1"
-regex = "!=2019.12.17"
-requests = "*"
-safetensors = ">=0.4.1"
-tokenizers = ">=0.20,<0.21"
-tqdm = ">=4.27"
-
-[package.extras]
-accelerate = ["accelerate (>=0.26.0)"]
-agents = ["Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.26.0)", "datasets (!=2.5.0)", "diffusers", "opencv-python", "sentencepiece (>=0.1.91,!=0.1.92)", "torch"]
-all = ["Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.26.0)", "av (==9.2.0)", "codecarbon (==1.2.0)", "flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1,<0.14.0)", "librosa", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "phonemizer", "protobuf", "pyctcdecode (>=0.4.0)", "ray[tune] (>=2.7.0)", "scipy (<1.13.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timm (<=0.9.16)", "tokenizers (>=0.20,<0.21)", "torch", "torchaudio", "torchvision"]
-audio = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
-benchmark = ["optimum-benchmark (>=0.3.0)"]
-codecarbon = ["codecarbon (==1.2.0)"]
-deepspeed = ["accelerate (>=0.26.0)", "deepspeed (>=0.9.3)"]
-deepspeed-testing = ["GitPython (<3.1.19)", "accelerate (>=0.26.0)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "deepspeed (>=0.9.3)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "nltk (<=3.8.1)", "optuna", "parameterized", "protobuf", "psutil", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorboard", "timeout-decorator"]
-dev = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.26.0)", "av (==9.2.0)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "flax (>=0.4.1,<=0.7.0)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1,<0.14.0)", "libcst", "librosa", "nltk (<=3.8.1)", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "ray[tune] (>=2.7.0)", "rhoknp (>=1.1.0,<1.3.1)", "rich", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "scipy (<1.13.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "tensorboard", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timeout-decorator", "timm (<=0.9.16)", "tokenizers (>=0.20,<0.21)", "torch", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"]
-dev-tensorflow = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "isort (>=5.5.4)", "kenlm", "keras-nlp (>=0.3.1,<0.14.0)", "libcst", "librosa", "nltk (<=3.8.1)", "onnxconverter-common", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "rich", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorboard", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timeout-decorator", "tokenizers (>=0.20,<0.21)", "urllib3 (<2.0.0)"]
-dev-torch = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.26.0)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "kenlm", "libcst", "librosa", "nltk (<=3.8.1)", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "ray[tune] (>=2.7.0)", "rhoknp (>=1.1.0,<1.3.1)", "rich", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "tensorboard", "timeout-decorator", "timm (<=0.9.16)", "tokenizers (>=0.20,<0.21)", "torch", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"]
-flax = ["flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "optax (>=0.0.8,<=0.1.4)", "scipy (<1.13.0)"]
-flax-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
-ftfy = ["ftfy"]
-integrations = ["optuna", "ray[tune] (>=2.7.0)", "sigopt"]
-ja = ["fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "rhoknp (>=1.1.0,<1.3.1)", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)"]
-modelcreation = ["cookiecutter (==1.7.3)"]
-natten = ["natten (>=0.14.6,<0.15.0)"]
-onnx = ["onnxconverter-common", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "tf2onnx"]
-onnxruntime = ["onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"]
-optuna = ["optuna"]
-quality = ["GitPython (<3.1.19)", "datasets (!=2.5.0)", "isort (>=5.5.4)", "libcst", "rich", "ruff (==0.5.1)", "urllib3 (<2.0.0)"]
-ray = ["ray[tune] (>=2.7.0)"]
-retrieval = ["datasets (!=2.5.0)", "faiss-cpu"]
-ruff = ["ruff (==0.5.1)"]
-sagemaker = ["sagemaker (>=2.31.0)"]
-sentencepiece = ["protobuf", "sentencepiece (>=0.1.91,!=0.1.92)"]
-serving = ["fastapi", "pydantic", "starlette", "uvicorn"]
-sigopt = ["sigopt"]
-sklearn = ["scikit-learn"]
-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)", "torchaudio"]
-testing = ["GitPython (<3.1.19)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "nltk (<=3.8.1)", "parameterized", "psutil", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.5.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorboard", "timeout-decorator"]
-tf = ["keras-nlp (>=0.3.1,<0.14.0)", "onnxconverter-common", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx"]
-tf-cpu = ["keras (>2.9,<2.16)", "keras-nlp (>=0.3.1,<0.14.0)", "onnxconverter-common", "tensorflow-cpu (>2.9,<2.16)", "tensorflow-probability (<0.24)", "tensorflow-text (<2.16)", "tf2onnx"]
-tf-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
-tiktoken = ["blobfile", "tiktoken"]
-timm = ["timm (<=0.9.16)"]
-tokenizers = ["tokenizers (>=0.20,<0.21)"]
-torch = ["accelerate (>=0.26.0)", "torch"]
-torch-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)", "torchaudio"]
-torch-vision = ["Pillow (>=10.0.1,<=15.0)", "torchvision"]
-torchhub = ["filelock", "huggingface-hub (>=0.23.2,<1.0)", "importlib-metadata", "numpy (>=1.17)", "packaging (>=20.0)", "protobuf", "regex (!=2019.12.17)", "requests", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.20,<0.21)", "torch", "tqdm (>=4.27)"]
-video = ["av (==9.2.0)"]
-vision = ["Pillow (>=10.0.1,<=15.0)"]
-
-[[package]]
-name = "triton"
-version = "2.2.0"
-description = "A language and compiler for custom Deep Learning operations"
-optional = false
-python-versions = "*"
-files = [
- {file = "triton-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2294514340cfe4e8f4f9e5c66c702744c4a117d25e618bd08469d0bfed1e2e5"},
- {file = "triton-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da58a152bddb62cafa9a857dd2bc1f886dbf9f9c90a2b5da82157cd2b34392b0"},
- {file = "triton-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af58716e721460a61886668b205963dc4d1e4ac20508cc3f623aef0d70283d5"},
- {file = "triton-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8fe46d3ab94a8103e291bd44c741cc294b91d1d81c1a2888254cbf7ff846dab"},
- {file = "triton-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8ce26093e539d727e7cf6f6f0d932b1ab0574dc02567e684377630d86723ace"},
- {file = "triton-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:227cc6f357c5efcb357f3867ac2a8e7ecea2298cd4606a8ba1e931d1d5a947df"},
-]
-
-[package.dependencies]
-filelock = "*"
-
-[package.extras]
-build = ["cmake (>=3.20)", "lit"]
-tests = ["autopep8", "flake8", "isort", "numpy", "pytest", "scipy (>=1.7.1)", "torch"]
-tutorials = ["matplotlib", "pandas", "tabulate", "torch"]
-
-[[package]]
-name = "typing-extensions"
-version = "4.10.0"
-description = "Backported and Experimental Type Hints for Python 3.8+"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"},
- {file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"},
-]
-
-[[package]]
-name = "typing-inspect"
-version = "0.9.0"
-description = "Runtime inspection utilities for typing module."
-optional = false
-python-versions = "*"
-files = [
- {file = "typing_inspect-0.9.0-py3-none-any.whl", hash = "sha256:9ee6fc59062311ef8547596ab6b955e1b8aa46242d854bfc78f4f6b0eff35f9f"},
- {file = "typing_inspect-0.9.0.tar.gz", hash = "sha256:b23fc42ff6f6ef6954e4852c1fb512cdd18dbea03134f91f856a95ccc9461f78"},
-]
-
-[package.dependencies]
-mypy-extensions = ">=0.3.0"
-typing-extensions = ">=3.7.4"
-
-[[package]]
-name = "urllib3"
-version = "2.2.1"
-description = "HTTP library with thread-safe connection pooling, file post, and more."
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"},
- {file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"},
-]
-
-[package.extras]
-brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"]
-h2 = ["h2 (>=4,<5)"]
-socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
-zstd = ["zstandard (>=0.18.0)"]
-
-[[package]]
-name = "virtualenv"
-version = "20.25.1"
-description = "Virtual Python Environment builder"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "virtualenv-20.25.1-py3-none-any.whl", hash = "sha256:961c026ac520bac5f69acb8ea063e8a4f071bcc9457b9c1f28f6b085c511583a"},
- {file = "virtualenv-20.25.1.tar.gz", hash = "sha256:e08e13ecdca7a0bd53798f356d5831434afa5b07b93f0abdf0797b7a06ffe197"},
-]
-
-[package.dependencies]
-distlib = ">=0.3.7,<1"
-filelock = ">=3.12.2,<4"
-platformdirs = ">=3.9.1,<5"
-
-[package.extras]
-docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"]
-test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8)", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10)"]
-
-[[package]]
-name = "websockets"
-version = "13.1"
-description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "websockets-13.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f48c749857f8fb598fb890a75f540e3221d0976ed0bf879cf3c7eef34151acee"},
- {file = "websockets-13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c7e72ce6bda6fb9409cc1e8164dd41d7c91466fb599eb047cfda72fe758a34a7"},
- {file = "websockets-13.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f779498eeec470295a2b1a5d97aa1bc9814ecd25e1eb637bd9d1c73a327387f6"},
- {file = "websockets-13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4676df3fe46956fbb0437d8800cd5f2b6d41143b6e7e842e60554398432cf29b"},
- {file = "websockets-13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7affedeb43a70351bb811dadf49493c9cfd1ed94c9c70095fd177e9cc1541fa"},
- {file = "websockets-13.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1971e62d2caa443e57588e1d82d15f663b29ff9dfe7446d9964a4b6f12c1e700"},
- {file = "websockets-13.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5f2e75431f8dc4a47f31565a6e1355fb4f2ecaa99d6b89737527ea917066e26c"},
- {file = "websockets-13.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:58cf7e75dbf7e566088b07e36ea2e3e2bd5676e22216e4cad108d4df4a7402a0"},
- {file = "websockets-13.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c90d6dec6be2c7d03378a574de87af9b1efea77d0c52a8301dd831ece938452f"},
- {file = "websockets-13.1-cp310-cp310-win32.whl", hash = "sha256:730f42125ccb14602f455155084f978bd9e8e57e89b569b4d7f0f0c17a448ffe"},
- {file = "websockets-13.1-cp310-cp310-win_amd64.whl", hash = "sha256:5993260f483d05a9737073be197371940c01b257cc45ae3f1d5d7adb371b266a"},
- {file = "websockets-13.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:61fc0dfcda609cda0fc9fe7977694c0c59cf9d749fbb17f4e9483929e3c48a19"},
- {file = "websockets-13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ceec59f59d092c5007e815def4ebb80c2de330e9588e101cf8bd94c143ec78a5"},
- {file = "websockets-13.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c1dca61c6db1166c48b95198c0b7d9c990b30c756fc2923cc66f68d17dc558fd"},
- {file = "websockets-13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:308e20f22c2c77f3f39caca508e765f8725020b84aa963474e18c59accbf4c02"},
- {file = "websockets-13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62d516c325e6540e8a57b94abefc3459d7dab8ce52ac75c96cad5549e187e3a7"},
- {file = "websockets-13.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87c6e35319b46b99e168eb98472d6c7d8634ee37750d7693656dc766395df096"},
- {file = "websockets-13.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5f9fee94ebafbc3117c30be1844ed01a3b177bb6e39088bc6b2fa1dc15572084"},
- {file = "websockets-13.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7c1e90228c2f5cdde263253fa5db63e6653f1c00e7ec64108065a0b9713fa1b3"},
- {file = "websockets-13.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6548f29b0e401eea2b967b2fdc1c7c7b5ebb3eeb470ed23a54cd45ef078a0db9"},
- {file = "websockets-13.1-cp311-cp311-win32.whl", hash = "sha256:c11d4d16e133f6df8916cc5b7e3e96ee4c44c936717d684a94f48f82edb7c92f"},
- {file = "websockets-13.1-cp311-cp311-win_amd64.whl", hash = "sha256:d04f13a1d75cb2b8382bdc16ae6fa58c97337253826dfe136195b7f89f661557"},
- {file = "websockets-13.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:9d75baf00138f80b48f1eac72ad1535aac0b6461265a0bcad391fc5aba875cfc"},
- {file = "websockets-13.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9b6f347deb3dcfbfde1c20baa21c2ac0751afaa73e64e5b693bb2b848efeaa49"},
- {file = "websockets-13.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:de58647e3f9c42f13f90ac7e5f58900c80a39019848c5547bc691693098ae1bd"},
- {file = "websockets-13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1b54689e38d1279a51d11e3467dd2f3a50f5f2e879012ce8f2d6943f00e83f0"},
- {file = "websockets-13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cf1781ef73c073e6b0f90af841aaf98501f975d306bbf6221683dd594ccc52b6"},
- {file = "websockets-13.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d23b88b9388ed85c6faf0e74d8dec4f4d3baf3ecf20a65a47b836d56260d4b9"},
- {file = "websockets-13.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3c78383585f47ccb0fcf186dcb8a43f5438bd7d8f47d69e0b56f71bf431a0a68"},
- {file = "websockets-13.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:d6d300f8ec35c24025ceb9b9019ae9040c1ab2f01cddc2bcc0b518af31c75c14"},
- {file = "websockets-13.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a9dcaf8b0cc72a392760bb8755922c03e17a5a54e08cca58e8b74f6902b433cf"},
- {file = "websockets-13.1-cp312-cp312-win32.whl", hash = "sha256:2f85cf4f2a1ba8f602298a853cec8526c2ca42a9a4b947ec236eaedb8f2dc80c"},
- {file = "websockets-13.1-cp312-cp312-win_amd64.whl", hash = "sha256:38377f8b0cdeee97c552d20cf1865695fcd56aba155ad1b4ca8779a5b6ef4ac3"},
- {file = "websockets-13.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a9ab1e71d3d2e54a0aa646ab6d4eebfaa5f416fe78dfe4da2839525dc5d765c6"},
- {file = "websockets-13.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b9d7439d7fab4dce00570bb906875734df13d9faa4b48e261c440a5fec6d9708"},
- {file = "websockets-13.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:327b74e915cf13c5931334c61e1a41040e365d380f812513a255aa804b183418"},
- {file = "websockets-13.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:325b1ccdbf5e5725fdcb1b0e9ad4d2545056479d0eee392c291c1bf76206435a"},
- {file = "websockets-13.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:346bee67a65f189e0e33f520f253d5147ab76ae42493804319b5716e46dddf0f"},
- {file = "websockets-13.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91a0fa841646320ec0d3accdff5b757b06e2e5c86ba32af2e0815c96c7a603c5"},
- {file = "websockets-13.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:18503d2c5f3943e93819238bf20df71982d193f73dcecd26c94514f417f6b135"},
- {file = "websockets-13.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:a9cd1af7e18e5221d2878378fbc287a14cd527fdd5939ed56a18df8a31136bb2"},
- {file = "websockets-13.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:70c5be9f416aa72aab7a2a76c90ae0a4fe2755c1816c153c1a2bcc3333ce4ce6"},
- {file = "websockets-13.1-cp313-cp313-win32.whl", hash = "sha256:624459daabeb310d3815b276c1adef475b3e6804abaf2d9d2c061c319f7f187d"},
- {file = "websockets-13.1-cp313-cp313-win_amd64.whl", hash = "sha256:c518e84bb59c2baae725accd355c8dc517b4a3ed8db88b4bc93c78dae2974bf2"},
- {file = "websockets-13.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c7934fd0e920e70468e676fe7f1b7261c1efa0d6c037c6722278ca0228ad9d0d"},
- {file = "websockets-13.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:149e622dc48c10ccc3d2760e5f36753db9cacf3ad7bc7bbbfd7d9c819e286f23"},
- {file = "websockets-13.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a569eb1b05d72f9bce2ebd28a1ce2054311b66677fcd46cf36204ad23acead8c"},
- {file = "websockets-13.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:95df24ca1e1bd93bbca51d94dd049a984609687cb2fb08a7f2c56ac84e9816ea"},
- {file = "websockets-13.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d8dbb1bf0c0a4ae8b40bdc9be7f644e2f3fb4e8a9aca7145bfa510d4a374eeb7"},
- {file = "websockets-13.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:035233b7531fb92a76beefcbf479504db8c72eb3bff41da55aecce3a0f729e54"},
- {file = "websockets-13.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e4450fc83a3df53dec45922b576e91e94f5578d06436871dce3a6be38e40f5db"},
- {file = "websockets-13.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:463e1c6ec853202dd3657f156123d6b4dad0c546ea2e2e38be2b3f7c5b8e7295"},
- {file = "websockets-13.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:6d6855bbe70119872c05107e38fbc7f96b1d8cb047d95c2c50869a46c65a8e96"},
- {file = "websockets-13.1-cp38-cp38-win32.whl", hash = "sha256:204e5107f43095012b00f1451374693267adbb832d29966a01ecc4ce1db26faf"},
- {file = "websockets-13.1-cp38-cp38-win_amd64.whl", hash = "sha256:485307243237328c022bc908b90e4457d0daa8b5cf4b3723fd3c4a8012fce4c6"},
- {file = "websockets-13.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9b37c184f8b976f0c0a231a5f3d6efe10807d41ccbe4488df8c74174805eea7d"},
- {file = "websockets-13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:163e7277e1a0bd9fb3c8842a71661ad19c6aa7bb3d6678dc7f89b17fbcc4aeb7"},
- {file = "websockets-13.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4b889dbd1342820cc210ba44307cf75ae5f2f96226c0038094455a96e64fb07a"},
- {file = "websockets-13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:586a356928692c1fed0eca68b4d1c2cbbd1ca2acf2ac7e7ebd3b9052582deefa"},
- {file = "websockets-13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7bd6abf1e070a6b72bfeb71049d6ad286852e285f146682bf30d0296f5fbadfa"},
- {file = "websockets-13.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2aad13a200e5934f5a6767492fb07151e1de1d6079c003ab31e1823733ae79"},
- {file = "websockets-13.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:df01aea34b6e9e33572c35cd16bae5a47785e7d5c8cb2b54b2acdb9678315a17"},
- {file = "websockets-13.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e54affdeb21026329fb0744ad187cf812f7d3c2aa702a5edb562b325191fcab6"},
- {file = "websockets-13.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9ef8aa8bdbac47f4968a5d66462a2a0935d044bf35c0e5a8af152d58516dbeb5"},
- {file = "websockets-13.1-cp39-cp39-win32.whl", hash = "sha256:deeb929efe52bed518f6eb2ddc00cc496366a14c726005726ad62c2dd9017a3c"},
- {file = "websockets-13.1-cp39-cp39-win_amd64.whl", hash = "sha256:7c65ffa900e7cc958cd088b9a9157a8141c991f8c53d11087e6fb7277a03f81d"},
- {file = "websockets-13.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5dd6da9bec02735931fccec99d97c29f47cc61f644264eb995ad6c0c27667238"},
- {file = "websockets-13.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:2510c09d8e8df777177ee3d40cd35450dc169a81e747455cc4197e63f7e7bfe5"},
- {file = "websockets-13.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f1c3cf67185543730888b20682fb186fc8d0fa6f07ccc3ef4390831ab4b388d9"},
- {file = "websockets-13.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bcc03c8b72267e97b49149e4863d57c2d77f13fae12066622dc78fe322490fe6"},
- {file = "websockets-13.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:004280a140f220c812e65f36944a9ca92d766b6cc4560be652a0a3883a79ed8a"},
- {file = "websockets-13.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:e2620453c075abeb0daa949a292e19f56de518988e079c36478bacf9546ced23"},
- {file = "websockets-13.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9156c45750b37337f7b0b00e6248991a047be4aa44554c9886fe6bdd605aab3b"},
- {file = "websockets-13.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:80c421e07973a89fbdd93e6f2003c17d20b69010458d3a8e37fb47874bd67d51"},
- {file = "websockets-13.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82d0ba76371769d6a4e56f7e83bb8e81846d17a6190971e38b5de108bde9b0d7"},
- {file = "websockets-13.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e9875a0143f07d74dc5e1ded1c4581f0d9f7ab86c78994e2ed9e95050073c94d"},
- {file = "websockets-13.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a11e38ad8922c7961447f35c7b17bffa15de4d17c70abd07bfbe12d6faa3e027"},
- {file = "websockets-13.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:4059f790b6ae8768471cddb65d3c4fe4792b0ab48e154c9f0a04cefaabcd5978"},
- {file = "websockets-13.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:25c35bf84bf7c7369d247f0b8cfa157f989862c49104c5cf85cb5436a641d93e"},
- {file = "websockets-13.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:83f91d8a9bb404b8c2c41a707ac7f7f75b9442a0a876df295de27251a856ad09"},
- {file = "websockets-13.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a43cfdcddd07f4ca2b1afb459824dd3c6d53a51410636a2c7fc97b9a8cf4842"},
- {file = "websockets-13.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48a2ef1381632a2f0cb4efeff34efa97901c9fbc118e01951ad7cfc10601a9bb"},
- {file = "websockets-13.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:459bf774c754c35dbb487360b12c5727adab887f1622b8aed5755880a21c4a20"},
- {file = "websockets-13.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:95858ca14a9f6fa8413d29e0a585b31b278388aa775b8a81fa24830123874678"},
- {file = "websockets-13.1-py3-none-any.whl", hash = "sha256:a9a396a6ad26130cdae92ae10c36af09d9bfe6cafe69670fd3b6da9b07b4044f"},
- {file = "websockets-13.1.tar.gz", hash = "sha256:a3b3366087c1bc0a2795111edcadddb8b3b59509d5db5d7ea3fdd69f954a8878"},
-]
-
-[[package]]
-name = "wrapt"
-version = "1.16.0"
-description = "Module for decorators, wrappers and monkey patching."
-optional = false
-python-versions = ">=3.6"
-files = [
- {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"},
- {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"},
- {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"},
- {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"},
- {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"},
- {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"},
- {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"},
- {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"},
- {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"},
- {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"},
- {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"},
- {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"},
- {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"},
- {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"},
- {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"},
- {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"},
- {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"},
- {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"},
- {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"},
- {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"},
- {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"},
- {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"},
- {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"},
- {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"},
- {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"},
- {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"},
- {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"},
- {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"},
- {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"},
- {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"},
- {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"},
- {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"},
- {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"},
- {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"},
- {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"},
- {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"},
- {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"},
- {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"},
- {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"},
- {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"},
- {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"},
- {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"},
- {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"},
- {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"},
- {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"},
- {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"},
- {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"},
- {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"},
- {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"},
- {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"},
- {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"},
- {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"},
- {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"},
- {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"},
- {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"},
- {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"},
- {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"},
- {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"},
- {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"},
- {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"},
- {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"},
- {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"},
- {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"},
- {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"},
- {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"},
- {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"},
- {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"},
- {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"},
- {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"},
- {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"},
-]
-
-[[package]]
-name = "yt-dlp"
-version = "2024.9.27"
-description = "A feature-rich command-line audio/video downloader"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "yt_dlp-2024.9.27-py3-none-any.whl", hash = "sha256:2717468dd697fcfcf9a89f493ba30a3830cdfb276c09750e5b561b08b9ef5f69"},
- {file = "yt_dlp-2024.9.27.tar.gz", hash = "sha256:86605542e17e2e23ad23145b637ec308133762a15a5dedac4ae50b7973237026"},
-]
-
-[package.dependencies]
-brotli = {version = "*", markers = "implementation_name == \"cpython\""}
-brotlicffi = {version = "*", markers = "implementation_name != \"cpython\""}
-certifi = "*"
-mutagen = "*"
-pycryptodomex = "*"
-requests = ">=2.32.2,<3"
-urllib3 = ">=1.26.17,<3"
-websockets = ">=13.0"
-
-[package.extras]
-build = ["build", "hatchling", "pip", "setuptools (>=71.0.2)", "wheel"]
-curl-cffi = ["curl-cffi (==0.5.10)", "curl-cffi (>=0.5.10,!=0.6.*,<0.7.2)"]
-dev = ["autopep8 (>=2.0,<3.0)", "pre-commit", "pytest (>=8.1,<9.0)", "ruff (>=0.6.0,<0.7.0)"]
-py2exe = ["py2exe (>=0.12)"]
-pyinstaller = ["pyinstaller (>=6.10.0)"]
-secretstorage = ["cffi", "secretstorage"]
-static-analysis = ["autopep8 (>=2.0,<3.0)", "ruff (>=0.6.0,<0.7.0)"]
-test = ["pytest (>=8.1,<9.0)"]
-
-[[package]]
-name = "zipp"
-version = "3.18.1"
-description = "Backport of pathlib-compatible object wrapper for zip files"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "zipp-3.18.1-py3-none-any.whl", hash = "sha256:206f5a15f2af3dbaee80769fb7dc6f249695e940acca08dfb2a4769fe61e538b"},
- {file = "zipp-3.18.1.tar.gz", hash = "sha256:2884ed22e7d8961de1c9a05142eb69a247f120291bc0206a00a7642f09b5b715"},
-]
-
-[package.extras]
-docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
-testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"]
-
-[metadata]
-lock-version = "2.0"
-python-versions = ">=3.9,<3.13"
-content-hash = "e53cee76d86d84a010943d35f47577fc7d9f2838246b40f17314be105774d041"
diff --git a/pyproject.toml b/pyproject.toml
index 791d2c41..789d4818 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,89 +1,196 @@
-[tool.poetry]
+[project]
name = "buzz-captions"
-version = "1.2.0"
+# Change also in Makefile and buzz/__version__.py
+version = "1.4.4"
description = ""
-authors = ["Chidi Williams "]
-license = "MIT"
+authors = [{ name = "Chidi Williams", email = "williamschidi1@gmail.com" }]
+requires-python = ">=3.12,<3.13"
readme = "README.md"
-include = [
- "buzz/libwhisper.*", "buzz/libwhisper-coreml.*", "buzz/*.dll", "buzz/whisper_cpp.py", "buzz/locale/*/LC_MESSAGES/buzz.mo",
- "buzz/dll_backup/*",
+# License format change to remove warning in PyPI will cause snap not to build
+license = { text = "MIT" }
+dependencies = [
+ "sounddevice>=0.5.3,<0.6",
+ "humanize>=4.4.0,<5",
+ "PyQt6==6.9.1",
+ "PyQt6-Qt6==6.9.1",
+ "PyQt6-sip==13.10.2",
+ "openai>=1.14.2,<2",
+ "keyring>=25.0.0,<26",
+ "platformdirs>=4.2.1,<5",
+ "dataclasses-json>=0.6.4,<0.7",
+ "numpy>=1.21.2,<2",
+ "requests>=2.31.0,<3",
+ "yt-dlp>=2026.2.21",
+ "stable-ts>=2.19.1,<3",
+ "faster-whisper>=1.2.1,<2",
+ "openai-whisper==20250625",
+ "transformers>=4.53,<5",
+ "accelerate>=1.12.0,<2",
+ "peft>=0.14.0,<1",
+ # Overriden in uv.tool section below to ensure CUDA 12.9 compatibility
+ # Skip on Intel Macs (x86_64), use 0.49.0 on ARM Macs, 0.45.0+ elsewhere
+ "bitsandbytes>=0.45.0; sys_platform != 'darwin' or platform_machine != 'x86_64'",
+ "polib>=1.2.0,<2",
+ "srt-equalizer>=0.1.10,<0.2",
+ # For Intel macOS (x86_64) - use older versions that support Intel
+ "torch==2.2.2; sys_platform == 'darwin' and platform_machine == 'x86_64'",
+ "torchaudio==2.2.2; sys_platform == 'darwin' and platform_machine == 'x86_64'",
+ "ctranslate2==4.3.1; sys_platform == 'darwin' and platform_machine == 'x86_64'",
+ # For ARM macOS (arm64) - use latest CPU-only versions from PyPI
+ "torch==2.8.0; sys_platform == 'darwin' and platform_machine == 'arm64'",
+ "torchaudio==2.8.0; sys_platform == 'darwin' and platform_machine == 'arm64'",
+ "ctranslate2>=4.6.2,<5; sys_platform == 'darwin' and platform_machine == 'arm64'",
+ # For Linux/Windows - use CUDA versions from pytorch index
+ "torch==2.8.0; sys_platform != 'darwin'",
+ "torchaudio==2.8.0; sys_platform != 'darwin'",
+ "ctranslate2>=4.6.2,<5; sys_platform != 'darwin'",
+ # faster whisper need cudnn 9
+ "nvidia-cudnn-cu12>=9,<10; sys_platform != 'darwin'",
+ # CUDA runtime libraries are provided by torch dependencies, no need to specify explicitly
+ "darkdetect>=0.8.0,<0.9",
+ "dora-search>=0.1.12,<0.2",
+ "diffq>=0.2.4,<0.3",
+ "einops>=0.8.1,<0.9",
+ "flake8>=7.1.2,<8",
+ "hydra-colorlog>=1.2.0,<2",
+ "hydra-core>=1.3.2,<2",
+ "julius>=0.2.7,<0.3",
+ "lameenc>=1.8.1,<2",
+ "museval>=0.4.1,<0.5",
+ "mypy>=1.15.0,<2",
+ "openunmix>=1.3.0,<2",
+ "pyyaml>=6.0.2,<7",
+ "submitit>=1.5.2,<2",
+ "tqdm>=4.67.1,<5",
+ "treetable>=0.2.5,<0.3",
+ "soundfile>=0.13.1,<0.14",
+ "urllib3>=2.6.0,<3",
+ "posthog>=3.23.0,<4",
+ # This version works, newer have issues on Windows
+ "onnxruntime==1.18.1",
+ "onnx>=1.20.0", # Required for nemo-toolkit, ensures ml-dtypes is installed
+ "vulkan>=1.3.275.1,<2",
+ "hf-xet>=1.1.5,<2",
+ "hatchling>=1.28.0",
+ "cmake>=4.2.0,<5",
+ # 2.5.3 is last versions with cuda 12
+ "nemo-toolkit[asr]==2.5.3; sys_platform != 'darwin' or platform_machine != 'x86_64'",
+ "nltk>=3.9.2",
+ "uroman>=1.3.1.1",
+ "lhotse==1.32.1",
+ "coverage==7.12.0",
+ # demucs is bundled directly in the wheel from demucs_repo/, not installed as a dependency
+ "certifi==2025.11.12",
+ "torchcodec>=0.9.0; sys_platform != 'darwin' or platform_machine != 'x86_64'",
+ "torch>=2.2.2",
+ "torchaudio>=2.2.2",
+ "datasets>=4.4.1",
]
repository = "https://github.com/chidiwilliams/buzz"
-packages = [
- { include = "buzz" },
+documentation = "https://chidiwilliams.github.io/buzz/docs"
+
+[project.scripts]
+buzz = "buzz.buzz:main"
+
+[dependency-groups]
+dev = [
+ "autopep8>=2.3.2,<3",
+ "pyinstaller>=6.12.0,<7",
+ "pyinstaller-hooks-contrib~=2025.1",
+ "six>=1.16.0,<2",
+ "pytest>=7.1.3,<8",
+ "pytest-cov>=4.0.0,<5",
+ "pytest-qt>=4.1.0,<5",
+ "pytest-xvfb>=2.0.0,<3",
+ "pytest-mock>=3.12.0,<4",
+ "pytest-timeout>=2.4.0,<3",
+ "pylint>=2.15.5,<3",
+ "pre-commit>=2.20.0,<3",
+ "pytest-benchmark>=4.0.0,<5",
+ "ruff>=0.1.3,<0.2",
+]
+build = [
+ "cmake>=4.2.0,<5",
+ "polib>=1.2.0,<2",
]
-[[tool.poetry.source]]
-name = "torch"
-url = "https://download.pytorch.org/whl/cu121"
-priority = "supplemental"
+[tool.uv]
+index-strategy = "unsafe-best-match"
+default-groups = [
+ "dev",
+ "build",
+]
-[project]
-requires-python = ">=3.9,<3.13"
+# Should be removed after nemo-toolkit update to 2.6.0
+# Forcing a CUDA 12.9 compatable bitsandbytes version
+# ARM Macs use 0.49.0, others use 0.47.0 (Intel Macs skip entirely via marker)
+override-dependencies = [
+ "bitsandbytes==0.49.0; sys_platform == 'darwin' and platform_machine == 'arm64'",
+ "bitsandbytes==0.47.0; sys_platform != 'darwin'",
+]
-[tool.poetry.dependencies]
-python = ">=3.9,<3.13"
-sounddevice = "^0.4.5"
-humanize = "^4.4.0"
-PyQt6 = "6.6.1"
-PyQt6-Qt6 = "6.6.2"
-PyQt6-sip = "13.6.0"
-openai = "^1.14.2"
-keyring = "^25.0.0"
-platformdirs = "^4.2.0"
-dataclasses-json = "^0.6.4"
-numpy = "^1.21.2"
-requests = "^2.31.0"
-yt-dlp = "2024.9.27"
-stable-ts = "2.17.5"
-faster-whisper = "1.0.3"
-openai-whisper = "v20240930"
-transformers = "4.46.1"
-accelerate = "^1.0.1"
-polib = "^1.2.0"
-srt-equalizer = "^0.1.10"
+[tool.uv.sources]
torch = [
- {version = "2.2.1", source = "pypi", markers = "sys_platform != 'win32' and sys_platform != 'msys'"},
- {version = "2.2.1+cu121", source = "torch", markers = "sys_platform == 'win32' or sys_platform == 'msys'"},
+ { index = "PyPI", marker = "sys_platform == 'darwin'" },
+ { index = "pytorch-cu129", marker = "sys_platform != 'darwin'" },
]
torchaudio = [
- {version = "2.2.1", source = "pypi", markers = "sys_platform != 'win32' and sys_platform != 'msys'"},
- {version = "2.2.1+cu121", source = "torch", markers = "sys_platform == 'win32' or sys_platform == 'msys'"},
+ { index = "PyPI", marker = "sys_platform == 'darwin'" },
+ { index = "pytorch-cu129", marker = "sys_platform != 'darwin'" },
]
-darkdetect = "^0.8.0"
-[tool.poetry.group.dev.dependencies]
-autopep8 = "^1.7.0"
-pyinstaller = "^6.5.0"
-# Lock to 2023.11 to fix error in 2023.12:
-# AttributeError: module 'dataclasses' has no attribute '__version__'
-pyinstaller-hooks-contrib = "^2024.3"
-six = "^1.16.0"
-pytest = "^7.1.3"
-pytest-cov = "^4.0.0"
-pytest-qt = "^4.1.0"
-pytest-xvfb = "^2.0.0"
-pytest-mock = "^3.12.0"
-pylint = "^2.15.5"
-pre-commit = "^2.20.0"
-pytest-benchmark = "^4.0.0"
-ruff = "^0.1.3"
+[[tool.uv.index]]
+name = "nvidia"
+url = "https://pypi.ngc.nvidia.com/"
-[tool.poetry.group.build.dependencies]
-ctypesgen = "^1.1.1"
-cmake = "^3.26.4"
-polib = "^1.2.0"
+[[tool.uv.index]]
+name = "pytorch-cu129"
+url = "https://download.pytorch.org/whl/cu129"
+
+[[tool.uv.index]]
+name = "PyPI"
+url = "https://pypi.org/simple/"
+default = true
+
+[tool.hatch.metadata]
+allow-direct-references = true
+
+[tool.hatch.build.targets.sdist]
+include = [
+ "buzz",
+ "buzz/whisper_cpp/*",
+ "buzz/locale/*/LC_MESSAGES/buzz.mo",
+ "demucs_repo",
+ "whisper_diarization",
+ "deepmultilingualpunctuation",
+ "ctc_forced_aligner",
+]
+
+[tool.hatch.build.targets.wheel]
+include = [
+ "buzz",
+ "buzz/whisper_cpp/*",
+ "buzz/locale/*/LC_MESSAGES/buzz.mo",
+ "whisper_diarization",
+ "deepmultilingualpunctuation",
+ "ctc_forced_aligner",
+]
+# Map demucs_repo/demucs to top-level demucs/ so 'import demucs' works
+sources = {"demucs_repo/demucs" = "demucs"}
+
+[tool.hatch.build.hooks.custom]
[build-system]
-requires = ["poetry-core", "ctypesgen", "setuptools", "cmake", "polib"]
-build-backend = "poetry.core.masonry.api"
+requires = ["hatchling", "cmake>=4.2.0,<5", "polib>=1.2.0,<2", "pybind11", "setuptools>=80.9.0"]
+build-backend = "hatchling.build"
-[tool.poetry.build]
-script = "build.py"
-
-[tool.poetry.scripts]
-buzz = "buzz.buzz:main"
+[tool.coverage.report]
+exclude_also = [
+ "if sys.platform == \"win32\":",
+ "if platform.system\\(\\) == \"Windows\":",
+ "if platform.system\\(\\) == \"Linux\":",
+ "if platform.system\\(\\) == \"Darwin\":",
+]
[tool.ruff]
exclude = [
diff --git a/pytest.ini b/pytest.ini
index 92443564..701a9fff 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -2,5 +2,11 @@
log_cli = 1
log_cli_level = DEBUG
qt_api=pyqt6
-log_format = %(asctime)s %(levelname)s %(message)s
+log_format = %(asctime)s %(levelname)s %(module)s::%(funcName)s %(message)s
log_date_format = %Y-%m-%d %H:%M:%S
+addopts = -x -s -p no:xdist -p no:pytest_parallel
+timeout = 900
+timeout_method = thread
+testpaths = tests
+markers =
+ timeout: set a timeout on a test function.
\ No newline at end of file
diff --git a/readme/README.zh_CN.md b/readme/README.zh_CN.md
new file mode 100644
index 00000000..49a37e40
--- /dev/null
+++ b/readme/README.zh_CN.md
@@ -0,0 +1,53 @@
+[[English](../README.md)] <- Click here to View the English page.
+
+# Buzz
+
+[项目文档](https://chidiwilliams.github.io/buzz/zh/docs)
+
+在个人电脑上离线转录和翻译音频。技术模型来源 OpenAI [Whisper](https://github.com/openai/whisper).
+
+
+[](https://github.com/chidiwilliams/buzz/actions/workflows/ci.yml)
+[](https://codecov.io/github/chidiwilliams/buzz)
+
+[](https://GitHub.com/chidiwilliams/buzz/releases/)
+
+## 安装
+
+**PyPI**:
+
+安装 [ffmpeg](https://www.ffmpeg.org/download.html)
+
+安装 Buzz
+
+```shell
+pip install buzz-captions
+python -m buzz
+```
+
+**macOS**:
+
+使用 [brew utility](https://brew.sh/) 安装
+
+```shell
+brew install --cask buzz
+```
+
+或下载并运行在 [Releases ](https://github.com/chidiwilliams/buzz/releases/latest) 页面中的 `.dmg` 文件 .
+
+**Windows**:
+
+下载并运行在 [Releases ](https://github.com/chidiwilliams/buzz/releases/latest) 页面中的 `.exe` 文件。
+
+应用程序未获得签名,当安装时会收到警告弹窗。 选择 `更多信息` -> `仍然运行`.
+
+**Linux**:
+
+```shell
+sudo apt-get install libportaudio2 libcanberra-gtk-module libcanberra-gtk3-module
+sudo snap install buzz
+```
+
+### 最新开发者版本
+
+有关如何获取具有最新功能和错误修复的最新开发版本的信息,请查阅 [FAQ](https://chidiwilliams.github.io/buzz/docs/faq#9-where-can-i-get-latest-development-version).
diff --git a/share/applications/buzz.desktop b/share/applications/buzz.desktop
new file mode 100644
index 00000000..1e8cf81d
--- /dev/null
+++ b/share/applications/buzz.desktop
@@ -0,0 +1,17 @@
+[Desktop Entry]
+
+Type=Application
+
+Encoding=UTF-8
+
+Name=Buzz
+
+Comment=Buzz transcribes and translates audio offline on your personal computer.
+
+Path=/opt/buzz
+
+Exec=/opt/buzz/Buzz
+
+Icon=buzz
+
+Terminal=false
diff --git a/share/applications/io.github.chidiwilliams.Buzz.desktop b/share/applications/io.github.chidiwilliams.Buzz.desktop
new file mode 100644
index 00000000..b087112a
--- /dev/null
+++ b/share/applications/io.github.chidiwilliams.Buzz.desktop
@@ -0,0 +1,15 @@
+[Desktop Entry]
+
+Type=Application
+
+Encoding=UTF-8
+
+Name=Buzz
+
+Comment=Transcribe and translate audio
+
+Exec=run-buzz.sh
+
+Icon=io.github.chidiwilliams.Buzz
+
+Terminal=false
diff --git a/share/icons/io.github.chidiwilliams.Buzz.svg b/share/icons/io.github.chidiwilliams.Buzz.svg
new file mode 100644
index 00000000..d5b67bc0
--- /dev/null
+++ b/share/icons/io.github.chidiwilliams.Buzz.svg
@@ -0,0 +1,23 @@
+
diff --git a/share/metainfo/io.github.chidiwilliams.Buzz.metainfo.xml b/share/metainfo/io.github.chidiwilliams.Buzz.metainfo.xml
new file mode 100644
index 00000000..ee594f28
--- /dev/null
+++ b/share/metainfo/io.github.chidiwilliams.Buzz.metainfo.xml
@@ -0,0 +1,142 @@
+
+
+ io.github.chidiwilliams.Buzz
+
+ Buzz
+ Transcribe and translate audio
+ CC0-1.0
+ MIT
+ Chidi Williams
+
+
+
+ Buzz transcribes and translates audio to text offline using OpenAI's Whisper. Import audio and video files into Buzz and export them as TXT, SRT, or VTT files. Buzz supports Whisper, Whisper.cpp, Faster Whisper, Whisper-compatible models from the Hugging Face repository, and the OpenAI Whisper API.
+
+
+ Required permissions in Buzz will let you select audio and video files for transcription, from most common file location on your computer. Network permission is used to download transcription model files. Microphone permission lets you transcribe real time speech.
+
+
+ Note: If your system theme is not applied to Buzz, ensure it is in ~/.themes folder. You may need to copy the system themes to this folder cp -r /usr/share/themes/ ~/.themes/ and give Flatpaks access to this folder flatpak override --user --filesystem=~/.themes.
+
Adding speaker identification on transcriptions and video support for transcription viewer, improvements to transcription table and support for over 1000 of worlds languages via MMS models as well as separate window to show live transcripts on a projector.
+
Release details:
+
+
Speaker identification on finished transcripts
+
Support for video in transcription viewer
+
Presentation (projector) window for live transcripts
+
Ability to add notes and restart transcriptions in main table
+
Adding support for more than 1000 languages via MMS model family when transcribing with Huggingface transcription type
+
Adding support for PEFT models when transcribing with Huggingface transcription type
+
Adding support for 8bit quantization for Huggingface and faster Whisper transcriptions
+
Updated libraries and dependencies to support latest GPUs
+
Support for secrets portal for snap packages on Linux
+
Ability to specify model to use when transcribing with OpenAI API
+
Ability to access application logs from About screen
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 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.
+
Additional improvements:
+
+
Option to switch the UI language from preferences
+
Library updates for better Linux compatibility, especially in Flatpak installations
+
Option to upload live transcripts to a server
+
Search and additional controls in Transcription viewer
+
Added UI translation for German, Dutch, Danish and Portuguese (Brazilian)