Customer story / K-12 / Online learning

MyclassBoard video case study: auto-generated lecture notes on FastPix and Notes Agent

MyclassBoard needed auto-generated study notes from lecture videos. Notes Agent was the answer. MyclassBoard is the Notes Agent anchor customer.

TRUSTED BY PRODUCT TEAMS SHIPPING VIDEO AT SCALE

Customer logoCustomer logoCustomer logoCustomer logoCustomer logoCustomer logo

Notes Agent turns every lecture into structured study notes the moment it finishes encoding. Our students get more value from the same content, with no extra editorial work on our side.

Anonymous

Founder, MyclassBoard

Security, compliance, and partnerships

ComplianceISO 27001 certified
PartnerNvidia Inception
PartnerGoogle Cloud Partner

Challenge

What needed to ship

01

Scale

Students don't rewatch full lectures; they review notes. Manual note-taking didn't scale.

02

Cadence

Lectures arrive on a fixed academic schedule; processing has to keep up with batch upload windows.

03

Accuracy

Notes had to be accurate enough that students would trust them over hand-written notes.

Integration pattern

Wiring Notes Agent into the LMS lecture flow

# When a lecture finishes encoding, fire Notes Agent
asset = fp.assets.create(
    inputs=[{"url": lecture_source_url}],
    in_video_ai={
        "notes_agent": True,
        "video_summary": True,
        "video_chapters": True,
    },
    metadata={"course_id": course.id, "lecture_id": lecture.id},
)

# Webhook handler in the LMS
@app.post("/webhooks/fastpix")
def fastpix_webhook():
    event = verify_webhook(...)
    if event.type == "ai.notes.ready":
        # event.data has the structured study notes
        lms.attach_notes_to_lecture(
            lecture_id=event.data.metadata.lecture_id,
            notes=event.data.notes,
            transcript=event.data.transcript,
            action_items=event.data.action_items,
        )

More patterns in /developers and the language-specific SDK guides.

Outcomes

What changed

01

Auto-notes

Every lecture auto-generates structured study notes the moment it finishes encoding.

02

Student lift

Students get more value per lecture; teachers don't take notes manually.

03

Anchor customer

MyclassBoard anchored the Notes Agent product as its first customer.

Similar customer stories

More on the same shape of problem

AAO NXT

“What was also great about the FastPix team is it felt like we were all working together. They felt like part of our team, not just vendors. They were with us every step of the way, from brainstorming to execution. That has been great.”

Kaushik Das

Founder & CEO at AaoNXT

Knovo

“We considered our options and decided on FastPix because: very fast uploads and delivery; having more of the infrastructure and features we needed, including the in-built deep analytics and web and mobile player, in one place, as opposed to say AWS or Kaltura, reduced the complexity for us.”

Prabhakar P

Head of Digital, Knovo

Aadhan

“FastPix with their 10+ video products in one API platform felt like a good fit for our needs. Every step of the rollout was deliberate. We tested, we measured, and we made sure the experience was up to our standard before we expanded.”

Technical Director at Aadhan

Sclera

“There were a lot of challenges using video. FastPix was refreshingly simple after attempting to build our own thing while trying with AWS. Our product's value, engagement, stickiness, and experience have all increased.”

Rajath Rao

Technical Director at Sclera

Rocketlane

“Seeing it all come alive — workflows as per our vision and UX, with our brand colors, in a manner reflective of our community.”

Sivaprakash S

UX Lead for RLTV at Rocketlane

AAO NXT

“What was also great about the FastPix team is it felt like we were all working together. They felt like part of our team, not just vendors. They were with us every step of the way, from brainstorming to execution. That has been great.”

Kaushik Das

Founder & CEO at AaoNXT

Knovo

“We considered our options and decided on FastPix because: very fast uploads and delivery; having more of the infrastructure and features we needed, including the in-built deep analytics and web and mobile player, in one place, as opposed to say AWS or Kaltura, reduced the complexity for us.”

Prabhakar P

Head of Digital, Knovo

Aadhan

“FastPix with their 10+ video products in one API platform felt like a good fit for our needs. Every step of the rollout was deliberate. We tested, we measured, and we made sure the experience was up to our standard before we expanded.”

Technical Director at Aadhan

Sclera

“There were a lot of challenges using video. FastPix was refreshingly simple after attempting to build our own thing while trying with AWS. Our product's value, engagement, stickiness, and experience have all increased.”

Rajath Rao

Technical Director at Sclera

Rocketlane

“Seeing it all come alive — workflows as per our vision and UX, with our brand colors, in a manner reflective of our community.”

Sivaprakash S

UX Lead for RLTV at Rocketlane

FAQ

MyclassBoard on FastPix FAQ

  • What does MyclassBoard use FastPix for?

    FastPix powers MyclassBoard’s video infrastructure across K-12 / online learning. The specific FastPix capabilities MyclassBoard uses are listed in the Solution section above; each links to the product or feature page.

  • What's the FastPix pricing model behind this customer story?

    FastPix bills per minute of encoding, storage, and streaming, plus a Starter plan at $10/mo with $25 in monthly usage credit. See /pricing for the canonical rates.

  • How long did it take MyclassBoard to migrate to or build on FastPix?

    Customer ship windows vary by scope. Most teams move from contract to live in a few weeks for greenfield builds and a few months for migrations off other video infrastructure. Each FastPix customer story above lists their specific timeline where shareable.

  • Where do similar engineering teams discuss FastPix builds?

    FastPix has an active Slack community where engineering teams from customer companies discuss patterns, share code, and answer each other’s integration questions.