Skip to content

Latest commit

Β 

History

145 Commits

Folders and files

NameName
Last commit message
Last commit date
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸŽ“ Meetup Killer β€” AI Course Assistant

πŸ‡«πŸ‡· Version franΓ§aise

CI Lint CI Integration Python FastAPI React TypeScript Vite Docker Nginx Raspberry Pi Groq Live Cloudflare License: MIT

πŸš€ Live service: parseandcut.alithiel31.dev

Meetup Killer turns audio recordings of lectures or meetings into structured Markdown study notes β€” or, if you just want the raw transcript, that too. Built to run on a Raspberry Pi, deployed via Docker, exposed publicly through a Cloudflare Tunnel β€” no port forwarding. Heavy processing is offloaded to the Groq API (Whisper Large V3 for transcription, GPT-OSS 120B for structuring).

Table of contents

Stack & skills

This project covers, end to end:

  • Backend: FastAPI + Uvicorn (Python 3.10), migrated from an original Flask implementation
  • Audio processing: FFmpeg (chunking long recordings for the Groq 25 MB per-file limit)
  • AI: Groq API β€” Whisper Large V3 (transcription) + GPT-OSS 120B (structuring)
  • Frontend: frontend/ β€” React + Vite Progressive Web App, packaged as a TWA (Trusted Web Activity) for Android
  • Containerization & deployment: Docker Compose (backend + frontend containers), Raspberry Pi target via a docker context, Cloudflare Tunnel for HTTPS/public access with no port forwarding β€” see docs/DEPLOY_PI.md
  • CI/CD: GitHub Actions β€” linting (flake8 for the backend, oxlint for the frontend), unit tests (pytest), and integration tests (FastAPI app boot, /health, /process error paths) on every push/PR
  • Operational history: migrated the hosting platform from Railway to a self-hosted Docker/Pi setup β€” see docs/Troubleshooting.md
  • Documentation: versioned changelog (Keep a Changelog), tagged releases (SemVer)

Features

Feature Detail
πŸŽ™οΈ Long audio support Auto-split into 10-min chunks β€” handles recordings over 1 hour
🧠 Structured notes Summary, hierarchical headings, bold keywords, definition blocks
πŸ”€ Two output modes Pick AI summary or raw transcript per upload β€” transcript mode skips the LLM call entirely, and comes with per-segment timestamps
🌐 Modern UI Drag & drop, step-by-step progress bar, processing stats
πŸ‡«πŸ‡·πŸ‡¬πŸ‡§ French/English UI Language switcher (header), translates the whole flow and the legal pages; drives the LLM structuring prompt's output language too β€” independent of Whisper, which always auto-detects the spoken language
πŸ”” Local notifications Opt-in "notify me when done" β€” pings the device via the service worker once a transcription finishes, useful when the tab is backgrounded
βœ… Robust validation File type + size checked both client-side and server-side (100 MB max β€” Cloudflare's own proxy ceiling on Free/Pro, see docs/Troubleshooting.md)
πŸ” Auto retry Whisper retried on network timeout with exponential backoff
🐳 Docker ready FFmpeg + Uvicorn pre-configured, lightweight python:3.10-slim image
πŸ“Š /health endpoint Monitoring: Groq status, default output language, supported formats
βš–οΈ Legal pages Terms, privacy policy and legal notice served by the PWA (/cgu, /politique-de-confidentialite, /mentions-legales), each in French and English

Supported audio formats

mp3 Β· mp4 Β· wav Β· m4a Β· ogg Β· webm Β· flac Β· aac Β· opus

Architecture

flowchart LR
    U["User (browser / TWA)"] -->|upload audio| FE

    subgraph Pi["Raspberry Pi (Docker Compose)"]
        TRA["Traefik<br/>reverse proxy Β· :8000"]
        FE["frontend container<br/>nginx Β· frontend/<br/>traefik-net"]
        BE["backend container<br/>FastAPI + Uvicorn<br/>:5000 (internal only)"]
        TRA -->|"Host: parseandcut.alithiel31.dev"| FE
        FE -->|reverse-proxy /api/*| BE
    end

    BE -->|FFmpeg| CHUNK["10-min chunks"]
    CHUNK -->|Whisper Large V3| TXT["raw transcription"]
    TXT -->|"mode=summary"<br/>GPT-OSS 120B| MD["structured Markdown"]
    TXT -->|"mode=transcript"| RAW["raw transcript returned as-is"]

    TUN["Cloudflare Tunnel<br/>parseandcut.alithiel31.dev"] --> TRA
    U -.->|public access| TUN
Loading

Nginx (frontend container) serves the PWA static files and reverse-proxies /api/ to the backend β€” same-origin, no CORS to manage in production. Traefik (shared reverse proxy on the Pi) routes the public hostname to the frontend container via traefik-net, without exposing a dedicated port on the host. The Cloudflare Tunnel handles HTTPS and the domain name β€” no certificate to manage manually, no port opened on the router.

Environment variables

Variable Required Default Description
GROQ_API_KEY βœ… β€” Groq API key (console.groq.com)
LANGUAGE ❌ fr Default output language (fr/en) used when a request omits lang β€” does not force Whisper's input language, which always auto-detects
PORT ❌ 5000 Port the backend listens on
CHUNK_DURATION_SEC ❌ 600 Chunk duration in seconds
FFMPEG_PATH ❌ ffmpeg Path to the FFmpeg binary
CORS_ORIGINS ❌ https://parseandcut.alithiel31.dev Comma-separated allowed origins β€” override for local dev (Vite on :5173 calling Uvicorn on :5000)
MAX_UPLOAD_SIZE_MB ❌ 100 Max upload size enforced by the backend (in addition to nginx's client_max_body_size) β€” matches Cloudflare's own proxy ceiling on Free/Pro plans
RATE_LIMIT_PROCESS ❌ 5/minute Rate limit on /process (per IP), format N/period
FLASK_DEBUG ❌ false Debug mode (dev only)

Production note: on the Caesura deployment, GROQ_API_KEY is not read from .env β€” it's injected at deploy time via Infisical (see docs/DEPLOY_PI.md). For local development, set it directly in your .env as described below.

Local setup

  1. Clone the repository

    git clone https://github.com/Alithiel31/ParseAndCutV2.git
    cd ParseAndCutV2
  2. Create your .env file

    cp ".env exemple" .env

    Fill in GROQ_API_KEY at minimum.

  3. Run with Docker

    docker build -t meetup-killer .
    docker run -d -p 5000:5000 --name meetup-app --env-file .env meetup-killer

    Or without Docker (Python 3.10 + FFmpeg installed locally):

    pip install -r requirements.txt
    python -m app.main
  4. Open the app at http://localhost:5000

    On Raspberry Pi, replace localhost with the device's local IP address.

Deployment (Docker + Raspberry Pi)

This is the production setup. This repo's docker-compose.yml runs the backend (internal network, port 5000) and the frontend/ PWA (nginx, routed via Traefik on traefik-net, no port exposed on the host) β€” see docs/DEPLOY_PI.md for the full procedure (creating the docker context to the Pi, building, configuring the Traefik labels and the Cloudflare ingress).

docker context use rpi
docker compose build
bash deploy.sh

Check the /health endpoint anytime to verify service status.

Testing & CI

# Linting β€” same checks as the lint.yml workflow
npm run lint                    # flake8 (backend)
cd frontend && npm run lint     # oxlint (frontend)

# Unit tests (FastAPI routes mocked against FFmpeg/Groq) β€” same as the integration.yml workflow
pytest

Two workflows run on every push/PR to main:

  • CI Lint (.github/workflows/lint.yml): flake8 (backend), oxlint (frontend)
  • CI Integration (.github/workflows/integration.yml): runs the pytest suite, then boots the FastAPI app and checks /, /health, and the /process error paths (missing file β†’ 400, unsupported format β†’ 415)

Releases & versioning

This project follows Semantic Versioning (MAJOR.MINOR.PATCH) and Keep a Changelog. Every notable change lands in CHANGELOG.md under [Unreleased] first, then under a version heading once tagged:

git tag -a vX.Y.Z -m "vX.Y.Z"
git push origin vX.Y.Z

A GitHub Release is then created from the tag, with its description copied from the matching CHANGELOG.md section.

Contributing

See docs/CONTRIBUTING.md for the development environment, how to reproduce the CI checks locally, and the PR/release format.

Security

See docs/SECURITY.md to report a vulnerability.

License

MIT (see license field in package.json).

About

Transcribe and structure audio recordings into Markdown notes using Groq's Whisper + Llama 3 - FastAPI backend + React/Vite PWA, self-hosted on a Raspberry Pi

Topics

Resources

Contributing

Security policy

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages