Transcript: How_an_AI_tutor_deals_with_motivation_etc_20250702_105651.html

View and copy the extracted transcript JSON

Back to Files

Narration Generator

Generate narration from your transcript

Leave empty to use default narration settings. Use this to customize the narration approach.

[
  {
    "slide": 1,
    "fragments": [
      {
        "fragment_index": -1,
        "text_description": "Key Ideas",
        "image_description": ""
      },
      {
        "fragment_index": 1,
        "text_description": "AI Tutor & Academic Motivation\nAn\nAI tutor\nis software that personalises lessons, feedback, and pacing using learner data (Luckin et al., 2016).\nAcademic motivation\nis the internal drive that starts, guides, and sustains study behaviour (Bandura, 1994).\nKey Characteristics:\nAI tutor adapts content, hints, and pace to each learner.\nMotivation energises, directs, and keeps learning on track.\nQuick Check:\nWhich everyday app already adapts to your habits like an AI tutor does?",
        "image_description": ""
      }
    ]
  },
  {
    "slide": 2,
    "fragments": [
      {
        "fragment_index": -1,
        "text_description": "Motivation Gains\n/* Inline SVG used for this slide – no additional JS required. */",
        "image_description": ""
      },
      {
        "fragment_index": 1,
        "text_description": "Bar comparison of three studies\n% increase in self-reported motivation for Paek 2021, Chen 2020 and Ko 2022\n12%\n15%\n9%\nPaek 2021\nChen 2020\nKo 2022",
        "image_description": ""
      },
      {
        "fragment_index": 2,
        "text_description": "Key Insights\nEvery study reports a motivation rise after using an AI tutor.\nChen 2020 shows the largest gain (+15%), while Ko 2022 shows the smallest (+9%), illustrating variance.\nQuiz: Which study shows the largest gain?",
        "image_description": ""
      },
      {
        "fragment_index": 3,
        "text_description": "Legend\nPaek 2021\nChen 2020\nKo 2022",
        "image_description": ""
      },
      {
        "fragment_index": 4,
        "text_description": "Data Source\nAdapted from Paek (2021), Chen (2020), and Ko (2022) motivation studies.",
        "image_description": ""
      }
    ]
  },
  {
    "slide": 3,
    "fragments": [
      {
        "fragment_index": -1,
        "text_description": "How AI Sparks Motivation\nLet’s trace how a well-designed AI tutor builds and sustains student motivation.",
        "image_description": ""
      },
      {
        "fragment_index": 1,
        "text_description": "1\nImmediate Feedback\nInstant corrections turn mistakes into quick wins, giving learners rapid proof of progress.",
        "image_description": ""
      },
      {
        "fragment_index": 2,
        "text_description": "2\nAdaptive Challenge\nDifficulty rises or falls in real time, keeping tasks achievable yet stretching—ideal for sustained focus.",
        "image_description": ""
      },
      {
        "fragment_index": 3,
        "text_description": "3\nMastery Tracking\nClear progress charts boost self-efficacy and spark the drive to keep learning.",
        "image_description": ""
      },
      {
        "fragment_index": 4,
        "text_description": "Pro Tip:\nCombine all three mechanics in one session for a self-reinforcing motivation loop.",
        "image_description": ""
      }
    ]
  },
  {
    "slide": 4,
    "fragments": [
      {
        "fragment_index": -1,
        "text_description": "Tune the Tutor",
        "image_description": ""
      },
      {
        "fragment_index": 1,
        "text_description": "Push Motivation Above 80%",
        "image_description": ""
      },
      {
        "fragment_index": 2,
        "text_description": "Move the sliders to explore how tutor design affects motivation.\nShorter feedback delay boosts immediacy.\nHigher adaptivity personalises tasks and can lift engagement.\nWatch the live gauge: your target is a sustained 80 % motivation.",
        "image_description": ""
      },
      {
        "fragment_index": 3,
        "text_description": "Tip: try delay < 2 s and adaptivity ≈ 70 % for a quick win.",
        "image_description": ""
      }
    ]
  },
  {
    "slide": 5,
    "fragments": [
      {
        "fragment_index": -1,
        "text_description": "AI vs Human Boosts",
        "image_description": ""
      },
      {
        "fragment_index": 1,
        "text_description": "AI Tutor\nInstant analytics pinpoints gaps the moment they appear.\n24/7 availability lets learners practise whenever motivation strikes.\nAdaptive nudges keep study streaks alive.",
        "image_description": ""
      },
      {
        "fragment_index": 2,
        "text_description": "Human Teacher\nEmpathy reads mood and adjusts explanations with care.\nInspiration through stories sparks purpose and curiosity.\nPersonal praise builds lasting confidence.",
        "image_description": ""
      },
      {
        "fragment_index": 3,
        "text_description": "Key Similarities\nSet clear learning goals\nProvide timely feedback\nCelebrate progress milestones\nAdapt to learner pace",
        "image_description": ""
      }
    ]
  },
  {
    "slide": 6,
    "fragments": [
      {
        "fragment_index": -1,
        "text_description": "Multiple Choice Question\nCorrect!\nYes—instant, targeted feedback links effort with success, strengthening self-belief.\nIncorrect\nReview how feedback timing influences confidence; Paek et al. highlight the power of immediate responses.\nconst correctOption = 0;\n        const answerCards = document.querySelectorAll('.answer-card');\n        const submitBtn = document.getElementById('submitBtn');\n        const feedbackCorrect = document.getElementById('feedbackCorrect');\n        const feedbackIncorrect = document.getElementById('feedbackIncorrect');\n\n        let selectedOption = null;\n\n        answerCards.forEach((card, index) => {\n            card.addEventListener('click', () => {\n                answerCards.forEach(c => c.classList.remove('border-blue-500', 'bg-blue-50'));\n                card.classList.add('border-blue-500', 'bg-blue-50');\n                selectedOption = index;\n            });\n        });\n\n        submitBtn.addEventListener('click', () => {\n            if (selectedOption === null) return;\n\n            if (selectedOption === correctOption) {\n                feedbackCorrect.classList.remove('hidden');\n                feedbackIncorrect.classList.add('hidden');\n                // Optional: trigger confetti animation here.\n            } else {\n                feedbackIncorrect.classList.remove('hidden');\n                feedbackCorrect.classList.add('hidden');\n            }\n        });",
        "image_description": ""
      },
      {
        "fragment_index": 1,
        "text_description": "Question\nAccording to Paek et al. (2021), which tutoring feature most directly boosts a learner’s self-efficacy?",
        "image_description": ""
      },
      {
        "fragment_index": 2,
        "text_description": "1\nImmediate, task-specific feedback",
        "image_description": ""
      },
      {
        "fragment_index": 3,
        "text_description": "2\nEnd-of-session summary feedback",
        "image_description": ""
      },
      {
        "fragment_index": 4,
        "text_description": "3\nLeaderboard peer comparison",
        "image_description": ""
      },
      {
        "fragment_index": 5,
        "text_description": "4\nExtra drill practice without feedback",
        "image_description": ""
      },
      {
        "fragment_index": 6,
        "text_description": "Hint:\nConfidence climbs fastest when you learn right away whether your answer is correct.",
        "image_description": ""
      },
      {
        "fragment_index": 7,
        "text_description": "Submit Answer",
        "image_description": ""
      }
    ]
  },
  {
    "slide": 7,
    "fragments": [
      {
        "fragment_index": -1,
        "text_description": "Key Takeaways\nMotivation Matters",
        "image_description": ""
      },
      {
        "fragment_index": 1,
        "text_description": "Autonomy Boost\nAI tutor offers clear goals and meaningful choices, letting learners steer their own path.",
        "image_description": ""
      },
      {
        "fragment_index": 2,
        "text_description": "Optimal Challenge\nAdaptive tasks stay in the “just-right” zone, keeping effort high and frustration low.",
        "image_description": ""
      },
      {
        "fragment_index": 3,
        "text_description": "Instant Feedback\nTimely hints and praise reinforce progress, growing confidence and competence.",
        "image_description": ""
      },
      {
        "fragment_index": 4,
        "text_description": "Your Turn\nDesign a motivating AI quest: set a goal, plan adaptive steps, and choose feedback cues.",
        "image_description": ""
      }
    ]
  }
]