AI-Powered Learning Notes

Transform
Information into
learning notes

Paste any URL. Our AI analyzes the content, structures it into sections, and generates beautiful, exportable study notes — in seconds.

YouTube URL
AI Processing
Analysis
transcript + frames
PDF
Word
Slides
Notion
JSON

See it in action

Real notes generated from real YouTube videos

🇫🇷
CONCEPT3 sections

French Basics: Greetings & Introductions

FrenchPod101

Formal vs Informal Greetings

Bonjour — used in any formal context, from morning until evening. Always the safe default.

Salut — casual, equivalent to "hey." Only with friends or peers your age.

FrenchEnglishContext
BonjourGood dayFormal
BonsoirGood eveningAfter 6pm
SalutHey/HiCasual
CoucouHey thereVery casual
AI Tip: In French culture, greeting with Bonjour when entering a shop is expected — skipping it is considered rude.
Key Phrase: Introducing Yourself

Je m'appelle... — "My name is..."

1:42The liaison rule: when a word ending in a consonant is followed by a vowel, they link together in pronunciation.
🍖
EXERCISE5 sections

Gordon Ramsay — Perfect Beef Wellington

Gordon Ramsay

Step 1: Prepare the Duxelles

1.Finely chop 500g mixed mushrooms (chestnut + button)
2.Sauté in butter on high heat until all moisture evaporates — this is critical
3.Add 2 minced shallots, thyme, salt & pepper
4.Cook until the mixture is completely dry and paste-like
Warning: If the duxelles is too wet, your pastry will be soggy. Don't rush this step.

Step 2: Sear the Fillet

Season the beef fillet generously with salt and cracked pepper
Searing time: 30 seconds per side in a smoking-hot pan
Rest for 10 minutes, then brush with English mustard
StageInternal TempResult
Rare48°C / 118°FVery pink center
Medium-rare52°C / 126°FPink, warm center
Medium57°C / 135°FSlightly pink
🧵
NOVEL4 sections

Pattern Drafting: The Perfect Sleeve

The Tailoring Academy

Understanding Sleeve Cap Geometry

The sleeve cap is the most temperamental part of any sleeve, and it is the place where most home-sewn shirts quietly betray themselves — that small, telltale pucker just above the shoulder seam. The fix is not skill. The fix is geometry.

A well-drafted cap carries between two and a half and four centimetres of ease — extra length tucked into the curve so the fabric can wrap around the rounded top of the arm without buckling. Heavier fabrics demand more; jersey and linen want less. The fabric is doing work for you, so you have to give it room to do it.

Drafting the Curve

Start with the back. The back armhole is always slightly deeper than the front, which means the back cap curve must sit a touch higher than the front to match. Sketch the back first, and the front will fall into place around it without argument.

The cap height itself comes from a single formula: take the armscye depth, divide it by three, then add two centimetres of ease. For an armscye of forty-two, that gives you sixteen centimetres of cap. For structured wools, push that to sixteen and a half; for knits, drop it to fifteen.

Mark the grainline straight through the centre of the sleeve, parallel to the selvedge. This is not optional. A sleeve cut off-grain will twist on the body within an hour of wearing.

⚛️
CONCEPT6 sections

React Server Components Explained

Theo Browne

Server vs Client Components

The key mental model: Server Components run once on the server and send pure HTML. Client Components ship JavaScript to the browser.

tsx
// This is a Server Component (default in Next.js App Router)
async function UserProfile({ id }: { id: string }) {
  const user = await db.user.findUnique({ where: { id } });
  return <div>{user.name}</div>;
}

// This is a Client Component
'use client';
function LikeButton() {
  const [liked, setLiked] = useState(false);
  return <button onClick={() => setLiked(true)}>♥</button>;
}
When to use which?
Use Server ComponentUse Client Component
Data fetchingEvent handlers (onClick)
Backend resourcesBrowser APIs
Sensitive logic/keysState (useState)
Large dependenciesEffects (useEffect)
Server ComponentBrowserClient Component
mermaid diagram
6:30"The boundary is the 'use client' directive — everything below it becomes client."
AI Tip: You can import Server Components into Client Components, but not the other way around. Think of it as a one-way waterfall.

Everything you need

Powerful features, beautifully simple

Paste & Process

Drop any YouTube URL. We extract the transcript (even when captions are off — Whisper falls in), detect chapters, and capture key frames at every section boundary.

Notes that look like you wrote them

5 note styles × 4 writing tones × 9 languages — 180 combinations. Two-pass GPT-5-mini structuring with Mermaid diagrams rendered inline. Custom prompts let you tell the model exactly how you want the note.

Push straight to Notion (or anywhere)

PDF, Word, PowerPoint, JSON, and Notion. The Notion export is in-place — re-export updates the same page, no duplicates. Tables, code blocks, diagrams, timestamps preserved across every format.

4
Export Formats
9
Languages
5
Note Styles

Ready to transform your learning?

Join thousands of learners who turn YouTube videos into structured, exportable notes.