Buzz transcribes and translates audio offline on your personal computer. Powered by OpenAI's Whisper.
This report presents the forensic synthetic code analysis of chidiwilliams/buzz, a Python project with 20,158 GitHub stars. SynthScan v2.0 examined 56,431 lines of code across 345 source files, recording 1346 pattern matches distributed across 14 syntactic categories. The overall adjusted score of 25.9 places this repository in the Moderate AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 1346 distinct pattern matches across 14 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/cache_test.py | 10 | def test_should_save_and_load(self, tmp_path): | CODE |
| LOW | tests/conftest.py | 62 | def transcription_segment_dao(db) -> TranscriptionSegmentDAO: | CODE |
| LOW⚡ | tests/gui_test.py | 53 | def test_should_show_sorted_whisper_languages(self, qtbot): | CODE |
| LOW⚡ | tests/gui_test.py | 60 | def test_should_select_en_as_default_language(self, qtbot): | CODE |
| LOW⚡ | tests/gui_test.py | 65 | def test_should_select_detect_language_as_default(self, qtbot): | CODE |
| LOW | tests/gui_test.py | 83 | def test_select_default_mic_when_no_default(self): | CODE |
| LOW | tests/gui_test.py | 97 | def test_should_check_for_updates(self, qtbot: QtBot): | CODE |
| LOW | tests/gui_test.py | 115 | def test_should_update_advanced_settings(self, qtbot: QtBot): | CODE |
| LOW | tests/gui_test.py | 151 | def test_should_update_selected_model_on_type(self, qtbot: QtBot): | CODE |
| LOW | tests/gui_test.py | 164 | def test_should_show_list_of_models(self, qtbot: QtBot): | CODE |
| LOW | tests/gui_test.py | 176 | def test_should_select_model_from_list(self, qtbot: QtBot): | CODE |
| LOW | tests/gui_test.py | 214 | def _set_text_and_wait_response(qtbot: QtBot, widget: HuggingFaceSearchLineEdit): | CODE |
| LOW | tests/gui_test.py | 221 | def test_should_update_model_type(self, qtbot): | CODE |
| LOW | tests/recording_test.py | 9 | def test_initial_buffer_is_empty(self): | CODE |
| LOW | tests/recording_test.py | 15 | def test_initial_accumulation_size_is_zero(self): | CODE |
| LOW | tests/recording_test.py | 26 | def test_emits_amplitude_changed(self): | CODE |
| LOW | tests/recording_test.py | 54 | def test_emits_average_amplitude_when_buffer_full(self): | CODE |
| LOW | tests/recording_test.py | 67 | def test_resets_buffer_after_emitting_average(self): | CODE |
| LOW | tests/recording_test.py | 77 | def test_does_not_emit_average_before_buffer_full(self): | CODE |
| LOW | tests/recording_test.py | 89 | def test_average_amplitude_is_rms_of_accumulated_buffer(self): | CODE |
| LOW | tests/recording_test.py | 106 | def test_accumulation_size_set_from_sample_rate(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 47 | def test_empty_returns_english(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 50 | def test_two_letter_known_code(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 55 | def test_three_letter_code_returned_as_is(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 59 | def test_unknown_two_letter_code_returned_as_is(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 83 | def test_mms_case_insensitive(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 91 | def test_to_faster_whisper_model_size_large(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 94 | def test_to_faster_whisper_model_size_tiny(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 100 | def test_to_whisper_cpp_model_size_large(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 103 | def test_to_whisper_cpp_model_size_tiny(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 186 | def test_default_respects_model_type_env(self, monkeypatch): | CODE |
| LOW⚡ | tests/model_loader_test.py | 191 | def test_default_respects_model_size_env(self, monkeypatch): | CODE |
| LOW⚡ | tests/model_loader_test.py | 196 | def test_default_invalid_model_type_env_falls_back(self, monkeypatch): | CODE |
| LOW⚡ | tests/model_loader_test.py | 201 | def test_default_invalid_model_size_env_falls_back(self, monkeypatch): | CODE |
| LOW⚡ | tests/model_loader_test.py | 206 | def test_get_local_model_path_openai_api(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 216 | def test_unknown_size_returns_none(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 220 | def test_all_defined_sizes_have_values(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 238 | def test_whisper_model_not_downloaded(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 243 | def test_whisper_model_downloaded(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 248 | def test_openai_api_not_deletable(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 252 | def test_hugging_face_not_deletable(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 261 | def test_whisper_cpp_file_not_exists(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 267 | def test_whisper_file_not_exists(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 272 | def test_whisper_file_too_small(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 336 | def test_faster_whisper_opens_grandparent_directory(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 344 | def test_no_model_path_does_nothing(self): | CODE |
| LOW⚡ | tests/model_loader_test.py | 353 | def test_whisper_model_removes_file(self, tmp_path): | CODE |
| LOW⚡ | tests/model_loader_test.py | 361 | def test_whisper_cpp_custom_removes_file(self, tmp_path): | CODE |
| LOW⚡ | tests/model_loader_test.py | 369 | def test_whisper_cpp_non_custom_removes_bin_file(self, tmp_path): | CODE |
| LOW⚡ | tests/model_loader_test.py | 377 | def test_whisper_cpp_non_custom_removes_coreml_files(self, tmp_path): | CODE |
| LOW⚡ | tests/model_loader_test.py | 427 | def test_returns_false_when_no_marker(self, tmp_path): | CODE |
| LOW⚡ | tests/model_loader_test.py | 430 | def test_returns_true_when_marker_present(self, tmp_path): | CODE |
| LOW⚡ | tests/model_loader_test.py | 434 | def test_returns_false_for_nonexistent_dir(self, tmp_path): | CODE |
| LOW | tests/model_loader_test.py | 72 | def test_various_language_codes(self, code, expected): | CODE |
| LOW | tests/model_loader_test.py | 114 | def test_supports_initial_prompt(self): | CODE |
| LOW | tests/model_loader_test.py | 142 | def test_is_manually_downloadable(self): | CODE |
| LOW | tests/model_loader_test.py | 288 | def test_faster_whisper_not_found(self): | CODE |
| LOW | tests/model_loader_test.py | 293 | def test_hugging_face_not_found(self): | CODE |
| LOW | tests/model_loader_test.py | 318 | def test_whisper_opens_parent_directory(self): | CODE |
| LOW | tests/model_loader_test.py | 325 | def test_hugging_face_opens_grandparent_directory(self): | CODE |
| 974 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | hatch_build.py | 221 | print(f"Error building whisper.cpp: {e}", file=sys.stderr) | CODE |
| MEDIUM | hatch_build.py | 226 | print("Error: 'make' command not found. Please ensure make is installed.", file=sys.stderr) | CODE |
| MEDIUM | tests/recording_transcriber_test.py | 117 | def callback(): | CODE |
| LOW | tests/recording_transcriber_test.py | 121 | except Exception as e: | CODE |
| LOW | tests/widgets/main_window_test.py | 115 | except Exception: | CODE |
| LOW | tests/widgets/main_window_test.py | 138 | except Exception: | CODE |
| LOW | buzz/recording.py | 37 | except Exception as e: | CODE |
| MEDIUM | buzz/recording.py | 27 | def start_recording(self): | CODE |
| LOW | buzz/sounddevice_player.py | 134 | except Exception: | CODE |
| LOW | buzz/sounddevice_player.py | 159 | except Exception: | CODE |
| LOW | buzz/sounddevice_player.py | 203 | except Exception: | CODE |
| MEDIUM | buzz/cli.py | 44 | print(f"Error: {str(exc)}\n", file=sys.stderr) | CODE |
| LOW | buzz/model_loader.py | 29 | except Exception as e: | CODE |
| LOW | buzz/model_loader.py | 71 | except Exception as e: | CODE |
| LOW | buzz/model_loader.py | 115 | except Exception as e: | CODE |
| LOW | buzz/model_loader.py | 301 | except Exception: | CODE |
| LOW | buzz/model_loader.py | 541 | except Exception as exc: | CODE |
| LOW | buzz/model_loader.py | 813 | except Exception as exc: | CODE |
| LOW | buzz/model_loader.py | 858 | except Exception as e: | CODE |
| LOW | buzz/model_loader.py | 884 | except Exception as e: | CODE |
| LOW | buzz/model_loader.py | 887 | except Exception as e: | CODE |
| LOW | buzz/model_loader.py | 974 | except Exception: | CODE |
| LOW | buzz/ffmpeg_video_player.py | 63 | except Exception: | CODE |
| LOW | buzz/ffmpeg_video_player.py | 164 | except Exception: | CODE |
| LOW | buzz/ffmpeg_video_player.py | 174 | except Exception: | CODE |
| LOW | buzz/ffmpeg_video_player.py | 207 | except Exception: | CODE |
| LOW | buzz/ffmpeg_video_player.py | 241 | except Exception: | CODE |
| LOW | buzz/translator.py | 70 | except Exception as e: | CODE |
| LOW | buzz/translator.py | 107 | except Exception as e: | CODE |
| LOW | buzz/file_transcriber_queue_worker.py | 69 | except Exception: | CODE |
| LOW | buzz/file_transcriber_queue_worker.py | 84 | except Exception as e: | CODE |
| LOW | buzz/file_transcriber_queue_worker.py | 90 | except Exception: | CODE |
| LOW | buzz/file_transcriber_queue_worker.py | 217 | except Exception as e: | CODE |
| LOW | buzz/file_transcriber_queue_worker.py | 414 | except Exception: | CODE |
| MEDIUM | buzz/file_transcriber_queue_worker.py | 64 | def callback(progress): | CODE |
| LOW | buzz/transcriber/whisper_cpp.py | 349 | except Exception as e: | CODE |
| LOW | buzz/transcriber/whisper_cpp.py | 355 | except Exception as e: | CODE |
| LOW | buzz/transcriber/whisper_cpp.py | 507 | except Exception as e: | CODE |
| LOW | buzz/transcriber/file_transcriber.py | 46 | except Exception as exc: | CODE |
| LOW | buzz/transcriber/file_transcriber.py | 88 | except Exception as exc: | CODE |
| LOW | buzz/transcriber/file_transcriber.py | 116 | except Exception as exc: | CODE |
| LOW | buzz/transcriber/recording_transcriber.py | 157 | except Exception as exc: | CODE |
| LOW | buzz/transcriber/recording_transcriber.py | 346 | except Exception as e: | CODE |
| LOW | buzz/transcriber/recording_transcriber.py | 498 | except Exception as e: | CODE |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 206 | except Exception as e: | CODE |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 423 | except Exception as e: | CODE |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 429 | except Exception as e: | CODE |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 443 | except Exception as e: | CODE |
| LOW | …zz/transcriber/local_whisper_cpp_server_transcriber.py | 90 | except Exception as e: | CODE |
| LOW | buzz/plugins/loader.py | 81 | except Exception as exc: | CODE |
| LOW | buzz/plugins/loader.py | 116 | except Exception as exc: | CODE |
| LOW | buzz/plugins/loader.py | 143 | except Exception as exc: | CODE |
| LOW | buzz/plugins/loader.py | 188 | except Exception as exc: | CODE |
| LOW | buzz/plugins/post_processing.py | 53 | except Exception as exc: # noqa: BLE001 - propagated to caller | CODE |
| LOW | buzz/plugins/post_processing.py | 101 | except Exception as exc: # noqa: BLE001 | CODE |
| MEDIUM | buzz/plugins/post_processing.py | 50 | def run(): | CODE |
| MEDIUM | buzz/plugins/post_processing.py | 97 | def run(self): | CODE |
| LOW | buzz/plugins/manager.py | 65 | except Exception as exc: | CODE |
| LOW | buzz/plugins/manager.py | 71 | except Exception as exc: | CODE |
| LOW | buzz/plugins/manager.py | 98 | except Exception as exc: | CODE |
| 55 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/recording_test.py | 2 | CODE | |
| LOW | tests/mock_qt.py | 5 | CODE | |
| LOW | tests/model_loader_test.py | 1 | CODE | |
| LOW | tests/model_loader_test.py | 3 | CODE | |
| LOW | tests/model_loader_test.py | 4 | CODE | |
| LOW | tests/model_loader_test.py | 6 | CODE | |
| LOW | tests/model_loader_test.py | 714 | CODE | |
| LOW | tests/model_loader_test.py | 724 | CODE | |
| LOW | tests/recording_transcriber_test.py | 2 | CODE | |
| LOW | tests/recording_transcriber_test.py | 5 | CODE | |
| LOW | tests/translator_test.py | 2 | CODE | |
| LOW | tests/translator_test.py | 4 | CODE | |
| LOW | tests/translator_test.py | 11 | CODE | |
| LOW | tests/cli_test.py | 2 | CODE | |
| LOW | tests/update_checker_test.py | 6 | CODE | |
| LOW | tests/transcriber/recording_transcriber_test.py | 5 | CODE | |
| LOW | tests/transcriber/recording_transcriber_test.py | 14 | CODE | |
| LOW | tests/transcriber/recording_transcriber_test.py | 62 | CODE | |
| LOW | tests/transcriber/transformers_whisper_test.py | 1 | CODE | |
| LOW | tests/transcriber/transformers_whisper_test.py | 2 | CODE | |
| LOW | tests/transcriber/transformers_whisper_test.py | 3 | CODE | |
| LOW | …ranscriber/openai_whisper_api_file_transcriber_test.py | 10 | CODE | |
| LOW | tests/settings/settings_test.py | 1 | CODE | |
| LOW | tests/settings/settings_test.py | 2 | CODE | |
| LOW | tests/db/entity/transcription_test.py | 1 | CODE | |
| LOW | tests/db/service/transcription_service_test.py | 2 | CODE | |
| LOW | tests/db/service/transcription_service_test.py | 3 | CODE | |
| LOW | tests/widgets/update_dialog_test.py | 4 | CODE | |
| LOW | tests/widgets/transcription_tasks_table_widget_test.py | 10 | CODE | |
| LOW | tests/widgets/transcription_tasks_table_widget_test.py | 14 | CODE | |
| LOW | tests/widgets/speaker_identification_widget_test.py | 1 | CODE | |
| LOW | tests/widgets/recording_transcriber_widget_test.py | 10 | CODE | |
| LOW | tests/widgets/presentation_window_test.py | 2 | CODE | |
| LOW | tests/widgets/presentation_window_test.py | 3 | CODE | |
| LOW | tests/widgets/presentation_window_test.py | 5 | CODE | |
| LOW | tests/widgets/presentation_window_test.py | 5 | CODE | |
| LOW | tests/widgets/video_player_test.py | 4 | CODE | |
| LOW | tests/widgets/hugging_face_search_line_edit_test.py | 5 | CODE | |
| LOW | tests/widgets/menu_bar_test.py | 1 | CODE | |
| LOW | tests/widgets/plugins_dialog/plugins_dialog_test.py | 1 | CODE | |
| LOW | tests/store/keyring_store_test.py | 1 | CODE | |
| LOW | tests/store/keyring_store_test.py | 5 | CODE | |
| LOW | tests/store/keyring_store_test.py | 5 | CODE | |
| LOW | buzz/transformers_whisper.py | 3 | CODE | |
| LOW | buzz/transformers_whisper.py | 8 | CODE | |
| LOW | buzz/transformers_whisper.py | 375 | CODE | |
| LOW | buzz/transformers_whisper.py | 267 | CODE | |
| LOW | buzz/whisper_audio.py | 5 | CODE | |
| LOW | buzz/locale.py | 1 | CODE | |
| LOW | buzz/locale.py | 2 | CODE | |
| LOW | buzz/translator.py | 7 | CODE | |
| LOW | buzz/buzz.py | 7 | CODE | |
| LOW | buzz/buzz.py | 12 | CODE | |
| LOW | buzz/transcriber/recording_transcriber.py | 15 | CODE | |
| LOW | buzz/transcriber/openai_whisper_api_file_transcriber.py | 11 | CODE | |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 10 | CODE | |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 20 | CODE | |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 21 | CODE | |
| LOW | …zz/transcriber/local_whisper_cpp_server_transcriber.py | 7 | CODE | |
| LOW | buzz/settings/settings.py | 3 | CODE | |
| 21 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | tests/plugins/plugin_system_test.py | 668 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/plugins/plugin_system_test.py | 670 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/plugins/plugin_system_test.py | 908 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/plugins/plugin_system_test.py | 910 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | appimage/build-appimage.sh | 33 | # ── Step 1: PyInstaller bundle ────────────────────────────────────────────── | COMMENT |
| MEDIUM | appimage/build-appimage.sh | 42 | # ── Step 2: Create AppDir ─────────────────────────────────────────────────── | COMMENT |
| MEDIUM | appimage/build-appimage.sh | 53 | # ── Step 3: Desktop integration ───────────────────────────────────────────── | COMMENT |
| MEDIUM | appimage/build-appimage.sh | 79 | # ── Step 4: AppRun entry point ────────────────────────────────────────────── | COMMENT |
| MEDIUM | appimage/build-appimage.sh | 94 | # ── Step 5: Build AppImage ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | buzz/widgets/video_player.py | 130 | # ------------------------------------------------------------------ | COMMENT |
| MEDIUM | buzz/widgets/video_player.py | 132 | # ------------------------------------------------------------------ | COMMENT |
| MEDIUM⚡ | buzz/widgets/video_player.py | 152 | # ------------------------------------------------------------------ | COMMENT |
| MEDIUM⚡ | buzz/widgets/video_player.py | 154 | # ------------------------------------------------------------------ | COMMENT |
| MEDIUM⚡ | buzz/widgets/video_player.py | 164 | # ------------------------------------------------------------------ | COMMENT |
| MEDIUM⚡ | buzz/widgets/video_player.py | 166 | # ------------------------------------------------------------------ | COMMENT |
| MEDIUM | buzz/widgets/audio_player.py | 129 | # ------------------------------------------------------------------ | COMMENT |
| MEDIUM | buzz/widgets/audio_player.py | 131 | # ------------------------------------------------------------------ | COMMENT |
| MEDIUM | buzz/widgets/audio_player.py | 162 | # ------------------------------------------------------------------ | COMMENT |
| MEDIUM | buzz/widgets/audio_player.py | 164 | # ------------------------------------------------------------------ | COMMENT |
| MEDIUM | buzz/widgets/audio_player.py | 225 | # ------------------------------------------------------------------ | COMMENT |
| MEDIUM | buzz/widgets/audio_player.py | 227 | # ------------------------------------------------------------------ | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | hatch_build.py | 13 | CODE | |
| LOW | tests/transcriber/recording_transcriber_test.py | 88 | CODE | |
| LOW | buzz/model_loader.py | 545 | CODE | |
| LOW | buzz/model_loader.py | 670 | CODE | |
| LOW | buzz/model_loader.py | 783 | CODE | |
| LOW | buzz/model_loader.py | 820 | CODE | |
| LOW | buzz/model_loader.py | 913 | CODE | |
| LOW | buzz/ffmpeg_video_player.py | 120 | CODE | |
| LOW | buzz/translator.py | 147 | CODE | |
| LOW | buzz/cuda_setup.py | 24 | CODE | |
| LOW | buzz/file_transcriber_queue_worker.py | 276 | CODE | |
| LOW | buzz/transcriber/whisper_cpp.py | 77 | CODE | |
| LOW | buzz/transcriber/whisper_cpp.py | 240 | CODE | |
| LOW | buzz/transcriber/file_transcriber.py | 185 | CODE | |
| LOW | buzz/transcriber/recording_transcriber.py | 82 | CODE | |
| LOW | buzz/transcriber/openai_whisper_api_file_transcriber.py | 193 | CODE | |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 147 | CODE | |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 432 | CODE | |
| LOW | buzz/plugins/loader.py | 176 | CODE | |
| LOW | buzz/plugins/manager.py | 167 | CODE | |
| LOW | buzz/plugins/base.py | 44 | CODE | |
| LOW | buzz/plugins/skip_already_transcribed/plugin.py | 77 | CODE | |
| LOW | buzz/plugins/skip_already_transcribed/plugin.py | 98 | CODE | |
| LOW | buzz/widgets/transcription_tasks_table_widget.py | 67 | CODE | |
| LOW | buzz/widgets/recording_transcriber_widget.py | 804 | CODE | |
| LOW | buzz/widgets/recording_transcriber_widget.py | 839 | CODE | |
| LOW | buzz/widgets/recording_transcriber_widget.py | 885 | CODE | |
| LOW | buzz/widgets/recording_transcriber_widget.py | 963 | CODE | |
| LOW | buzz/widgets/recording_transcriber_widget.py | 1037 | CODE | |
| LOW | buzz/widgets/recording_transcriber_widget.py | 1162 | CODE | |
| LOW | …/transcription_viewer/speaker_identification_widget.py | 209 | CODE | |
| LOW | …/transcription_viewer/speaker_identification_widget.py | 299 | CODE | |
| LOW | …/transcription_viewer/speaker_identification_widget.py | 663 | CODE | |
| LOW | …/transcription_viewer/speaker_identification_widget.py | 727 | CODE | |
| LOW | …ription_viewer/transcription_segments_editor_widget.py | 42 | CODE | |
| LOW | …ription_viewer/transcription_segments_editor_widget.py | 145 | CODE | |
| LOW | …ts/transcription_viewer/transcription_viewer_widget.py | 1078 | CODE | |
| LOW | …ts/transcription_viewer/transcription_viewer_widget.py | 1352 | CODE | |
| LOW | …ts/transcription_viewer/transcription_viewer_widget.py | 1391 | CODE | |
| LOW | …ts/transcription_viewer/transcription_viewer_widget.py | 1439 | CODE | |
| LOW | buzz/store/keyring_store.py | 31 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/conftest.py | 16 | # Set multiprocessing to use 'spawn' instead of 'fork' on Linux | COMMENT |
| LOW | …_viewer/transcription_viewer_widget_additional_test.py | 300 | # Set speed to a known value below maximum to ensure we can increase | COMMENT |
| LOW | …_viewer/transcription_viewer_widget_additional_test.py | 317 | # Set speed to a known value above minimum to ensure we can decrease | COMMENT |
| LOW | buzz/transformers_whisper.py | 252 | # Check if this is a PEFT model | COMMENT |
| LOW | buzz/transformers_whisper.py | 261 | # Check if user wants reduced GPU memory usage (8-bit quantization) | COMMENT |
| LOW | buzz/pip_utils.py | 84 | # Check if pip is already available | COMMENT |
| LOW | buzz/model_loader.py | 95 | # Check if it's the same file | COMMENT |
| LOW | buzz/file_transcriber_queue_worker.py | 388 | # Check if the error indicates cancellation | COMMENT |
| LOW | buzz/transcriber/recording_transcriber.py | 205 | # Check if user wants reduced GPU memory usage (int8 quantization) | COMMENT |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 133 | # Check if the process was terminated (likely due to cancellation) | COMMENT |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 182 | # Check if the file has audio streams before processing | COMMENT |
| LOW | buzz/transcriber/whisper_file_transcriber.py | 284 | # Check if user wants reduced GPU memory usage (int8 quantization) | COMMENT |
| LOW | buzz/widgets/transcription_tasks_table_widget.py | 705 | # Check if the task can be restarted | COMMENT |
| LOW | buzz/widgets/transcription_tasks_table_widget.py | 810 | # Add the task to the queue worker | COMMENT |
| LOW⚡ | …widgets/transcriber/transcription_options_group_box.py | 289 | # Check if this is an MMS model | COMMENT |
| LOW | …ription_viewer/transcription_segments_editor_widget.py | 168 | # Check if new start overlaps with previous segment's end | COMMENT |
| LOW | …ription_viewer/transcription_segments_editor_widget.py | 188 | # Check if new end overlaps with next segment's start | COMMENT |
| LOW | …s/transcription_viewer/transcription_resizer_widget.py | 57 | # Check if the language uses spaces between words | COMMENT |
| LOW | …ts/transcription_viewer/transcription_viewer_widget.py | 570 | # Set position to the start of the segment | COMMENT |
| LOW | …ts/transcription_viewer/transcription_viewer_widget.py | 1191 | # Check if we're editing the currently selected segment | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | tests/model_loader_test.py | 690 | # Create a fake zip with a single top-level directory inside | COMMENT |
| MEDIUM | tests/transcriber/file_transcriber_queue_worker_test.py | 145 | # Create a temporary file to simulate speech extraction output | COMMENT |
| MEDIUM | tests/transcriber/whisper_file_transcriber_test.py | 43 | # Create a temporary text file (not a valid media file) | COMMENT |
| MEDIUM | tests/db/dao/transcription_dao_test.py | 17 | # Create the transcription table with the new schema | COMMENT |
| MEDIUM | buzz/transformers_whisper.py | 404 | # Create a simple processor-like object that the pipeline expects | COMMENT |
| MEDIUM | buzz/widgets/transcription_tasks_table_widget.py | 438 | # Create a mapping of column IDs to their saved visual positions | COMMENT |
| MEDIUM | buzz/widgets/transcription_tasks_table_widget.py | 798 | # Create the new task | COMMENT |
| MEDIUM | buzz/store/keyring_store.py | 55 | # Create a socket pair for receiving the secret | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | …ranscriber/openai_whisper_api_file_transcriber_test.py | 121 | mock_openai_client.return_value.audio.transcriptions.create.assert_called() | CODE |
| CRITICAL | …widgets/transcriber/transcription_options_group_box.py | 225 | self.transcription_options.model.whisper_model_size.value.title() | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | buzz/pip_utils.py | 20 | logger = logging.getLogger(__name__) | CODE |
| LOW | buzz/cuda_setup.py | 21 | logger = logging.getLogger(__name__) | CODE |
| LOW | buzz/settings/settings.py | 103 | def set_value(self, key: Key, value: typing.Any) -> None: | CODE |
| LOW | buzz/plugins/loader.py | 28 | logger = logging.getLogger(__name__) | CODE |
| LOW | buzz/plugins/manager.py | 23 | logger = logging.getLogger(__name__) | CODE |
| LOW | buzz/plugins/manager.py | 192 | def set_config(self, plugin_id: str, values: dict) -> None: | CODE |
| LOW | buzz/plugins/manager.py | 214 | def set_enabled(self, plugin_id: str, enabled: bool) -> None: | CODE |
| LOW | buzz/plugins/base.py | 30 | logger = logging.getLogger(__name__) | CODE |
| LOW | buzz/plugins/skip_already_transcribed/plugin.py | 18 | logger = logging.getLogger(__name__) | CODE |
| LOW | buzz/plugins/export_docx/plugin.py | 28 | logger = logging.getLogger(__name__) | CODE |
| LOW | buzz/plugins/ai_summary/plugin.py | 25 | logger = logging.getLogger(__name__) | CODE |
| LOW | buzz/plugins/enhanced_language_detection/plugin.py | 29 | logger = logging.getLogger(__name__) | CODE |
| LOW | buzz/plugins/transcript_resizer/plugin.py | 27 | logger = logging.getLogger(__name__) | CODE |
| LOW | …/transcription_viewer/speaker_identification_widget.py | 585 | def _setup_audio_player(self) -> None: | CODE |
| LOW | buzz/store/keyring_store.py | 221 | def set_password(username: Key, password: str) -> None: | CODE |
| LOW | buzz/store/keyring_store.py | 298 | def set_secret(name: str, password: str) -> None: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | …ferences_dialog/shortcuts_editor_preferences_widget.py | 41 | self.shortcuts.set(shortcut, sequence.toString()) | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | .github/workflows/ci.yml | 401 | # needs: [release] | COMMENT |
| LOW | .github/workflows/ci.yml | 421 | # env: | COMMENT |
| LOW | appimage/build-appimage.sh | 1 | #!/usr/bin/env bash | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/widgets/update_dialog_test.py | 217 | reply = MockDownloadReply(data=b"fake-data") | CODE |
| LOW | tests/widgets/update_dialog_test.py | 232 | reply = MockDownloadReply(data=b"fake-data") | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | appimage/build-appimage.sh | 17 | # Usage: | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | tests/widgets/transcription_viewer_test.py | 994 | """Test comprehensive search clear functionality including UI state reset""" | STRING |