Metadata-Version: 2.4
Name: vaultlab-meetings
Version: 0.1.0
Summary: Smart Windows meeting recorder with per-app audio capture, voice-activity detection, and local/cloud transcription. Used by vaultlab as the meeting-context layer.
Author: Bobby Y.X. Ni
License: MIT License
        
        Copyright (c) 2026 Bobby Y.X. Ni
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/bobbyni819/meeting-recorder
Project-URL: Source, https://github.com/bobbyni819/meeting-recorder
Project-URL: Issues, https://github.com/bobbyni819/meeting-recorder/issues
Keywords: meeting-recorder,transcription,whisper,audio-capture,vad,per-app-audio,vaultlab,claude-code
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Multimedia :: Sound/Audio :: Capture/Recording
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
Classifier: Topic :: Office/Business
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: proc-tap>=0.3.0
Requires-Dist: PyAudioWPatch>=0.2.12
Requires-Dist: pystray>=0.19
Requires-Dist: Pillow>=10.0
Requires-Dist: winotify>=1.1
Requires-Dist: psutil>=5.9
Requires-Dist: numpy>=1.24
Requires-Dist: pydub>=0.25
Requires-Dist: tomli>=2.0; python_version < "3.11"
Requires-Dist: tomli-w>=1.0
Requires-Dist: keyboard>=0.13
Requires-Dist: mss>=9.0
Requires-Dist: opencv-python>=4.8
Requires-Dist: pycaw>=20230407
Provides-Extra: local
Requires-Dist: faster-whisper>=1.0; extra == "local"
Requires-Dist: torch>=2.1; extra == "local"
Requires-Dist: pyannote.audio<4.0,>=3.1; extra == "local"
Provides-Extra: cloud
Requires-Dist: openai>=1.0; extra == "cloud"
Provides-Extra: outlook
Requires-Dist: pywin32>=306; extra == "outlook"
Provides-Extra: gdrive
Requires-Dist: google-api-python-client>=2.100; extra == "gdrive"
Requires-Dist: google-auth-oauthlib>=1.1; extra == "gdrive"
Provides-Extra: summary-openai
Requires-Dist: openai>=1.0; extra == "summary-openai"
Provides-Extra: summary-anthropic
Requires-Dist: anthropic>=0.18; extra == "summary-anthropic"
Provides-Extra: gemini
Requires-Dist: google-genai>=1.0; extra == "gemini"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: ruff>=0.1; extra == "dev"
Provides-Extra: e2e
Requires-Dist: sounddevice>=0.4; extra == "e2e"
Requires-Dist: soundfile>=0.12; extra == "e2e"
Requires-Dist: playwright>=1.40; extra == "e2e"
Requires-Dist: pyttsx3>=2.90; extra == "e2e"
Dynamic: license-file

# vaultlab-meetings

Smart Windows meeting recorder with per-app audio capture, voice-activity detection, and local-or-cloud transcription. Originally built standalone; now also serves as the meeting-context layer for [vaultlab](https://github.com/bobbyni819/vaultlab).

> **Install name:** `vaultlab-meetings` (PyPI)
> **Import name:** `meeting_recorder` (Python)

```bash
pip install vaultlab-meetings
```

```python
import meeting_recorder
```

The split is intentional — `meeting-recorder` was already taken on PyPI, so the package ships under the `vaultlab-meetings` name while keeping the original import name for stability across existing scripts.

## What it does

- Captures per-app audio on Windows (Zoom, Teams, browser-based meetings, anything that goes through Windows audio)
- Voice-activity detection trims silence and skips empty stretches
- Local transcription via [faster-whisper](https://github.com/SYSTRAN/faster-whisper) or cloud via OpenAI
- Optional speaker diarization via pyannote.audio
- System-tray app with hotkey controls; saves recordings + transcripts to a configurable folder
- Optional Outlook calendar integration: auto-tags recordings with the meeting that was on your calendar

## Install

Base install (recording only, no transcription backend):

```bash
pip install vaultlab-meetings
```

With local transcription (faster-whisper + torch):

```bash
pip install "vaultlab-meetings[local]"
```

With cloud transcription (OpenAI Whisper API):

```bash
pip install "vaultlab-meetings[cloud]"
```

With Outlook calendar tagging (Windows + Outlook Classic):

```bash
pip install "vaultlab-meetings[outlook]"
```

Combine extras as needed: `pip install "vaultlab-meetings[local,outlook,gdrive]"`.

## Quick start

```bash
meeting-recorder
```

Drops a tray icon. Hotkeys (configurable in `config.toml`):
- Start/stop recording
- Mark a moment (saves a timestamped flag in the transcript)
- Open the recordings folder

Recordings + transcripts land at the path set in `config.toml` (default: `~/MeetingRecordings/`).

## Use from vaultlab

When `vaultlab[meetings]` is installed (which pulls `vaultlab-meetings`), vaultlab's `vaultlab.context.meetings` module wraps this package and ingests transcripts into your KB:

```python
from vaultlab.context.meetings import is_available, start_recording

if is_available():
    start_recording(project="codex-pdac")
```

Transcripts land at `<kb>/Sources/Meetings/<YYYY-MM-DD>-<slug>.md` with frontmatter (date, attendees, project, recording_path, duration, transcription_model) so they're searchable from any vaultlab slash command.

## Platform

Currently **Windows-only**. Per-app audio capture relies on `PyAudioWPatch`, `pycaw`, and `mss`, which are Windows-specific. macOS/Linux support is planned via a different recording backend; PRs welcome.

## License

MIT. See [`LICENSE`](LICENSE).
