An open API service indexing awesome lists of open source software.

https://github.com/berkayildi/vidsheet

YouTube video analysis + comic-book infographic generator.
https://github.com/berkayildi/vidsheet

ai anthropic fastapi gemini infographics mcp python react typescript vercel youtube

Last synced: 3 months ago
JSON representation

YouTube video analysis + comic-book infographic generator.

Awesome Lists containing this project

README

          

# VidSheet

[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

Paste a YouTube link, provide your API keys, get structured content analysis + a comic-book style infographic. Zero sign-up, stateless, BYO keys.

## Architecture

```
Browser (React/Vite/TypeScript)
|
+---> POST /api/analyze
| |-> YouTube transcript extraction
| |-> Anthropic Claude analysis
| |-> Returns: structured JSON (TLDR, takeaways, social hook)
|
+---> POST /api/generate-image
|-> Google Gemini image generation
|-> Returns: base64 PNG infographic
```

## How It Works

1. **Paste a YouTube URL** into the input field
2. **Enter your API keys** (Anthropic + Google Gemini) -- keys are used per-request and never stored
3. **Get results** -- structured analysis card + downloadable comic-book infographic

## Local Development

### Backend

```bash
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
uvicorn api.index:app --reload --port 8000
```

### Frontend

```bash
cd frontend
npm install
npm run dev
```

The Vite dev server proxies `/api` requests to `localhost:8000`.

### Both (parallel)

```bash
make run
```

### Tests

```bash
pip install pytest
pytest
```

## Stack

| Layer | Technology |
|-------|-----------|
| Frontend | React 19, Vite, TypeScript, Tailwind CSS v4 |
| Backend | FastAPI, Python 3.12+ |
| AI Analysis | Anthropic Claude (claude-sonnet-4-20250514) |
| Image Generation | Google Gemini (gemini-3.1-flash-image-preview) |
| Transcript | youtube-transcript-api |
| Hosting | Vercel (static + serverless Python) |

## Related

- [mcp-content-pipeline](https://github.com/berkayildi/mcp-content-pipeline) -- the MCP server this app wraps

## License

MIT