Week 15 — Improvisation & Group Critique

Final Project Notes

Submitted projects are DUE by May 5th


Course Evaluations

Please take time to complete the course evaluation. Your feedback is valuable and helps improve the course for future students.


Twine Project Notes

Adding Full-Frame Video in Twine/Harlowe

You can add a video to a Twine passage using the HTML <video> element. This works well for atmospheric backgrounds, dream sequences, loops, or cinematic transitions.

Folder Setup

Put your video file in a folder called video:

my-twine-project/
  index.html
  video/
    background.mp4

Basic Full-Frame Video Passage

Place this code directly inside a Twine passage:

<video class="full-frame-video" autoplay loop muted playsinline>
  <source src="video/background.mp4" type="video/mp4">
</video>

<div class="video-text">
  <h1>The room flickers into view.</h1>
  <p>Something is moving behind the glass.</p>

  [[Continue->Next Passage]]
</div>

CSS for the Video

Add this to your Twine Story Stylesheet:

.full-frame-video {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

CSS for Text Over the Video

Any Twine text should be placed in a positioned div above the video. The text needs a higher z-index than the video.

.video-text {
  position: relative;
  z-index: 2;
  padding: 3rem;
  color: white;
  max-width: 700px;
}

Full Example

In your Twine passage:

<video class="full-frame-video" autoplay loop muted playsinline>
  <source src="video/forest-loop.mp4" type="video/mp4">
</video>

<div class="video-text">
  <h1>Forest Entrance</h1>

  <p>
    The trees bend in the wind. The path ahead seems to breathe.
  </p>

  [[Step forward->Deep Forest]]
</div>

Autoplay Reminder

Autoplay is more likely to work if the player has already clicked once. A good structure is:

Title Page → click “Start” → Video Passage

If the video has sound, browsers may block autoplay. For background video, use muted.

Student Checklist


Improvisation & Story

Improvisation is not just performance—it is a way of discovering story in time. As writers, we improvise with ourselves. In groups, we listen, respond, and build together.

Watch

Notice how the performers listen, accept what is given, and gradually shape a scene without planning ahead.

In-Class Improvisation (Small Groups)

Work in groups of 3–4. Each group will use one phone in dictation mode (Notes app or similar) to record a shared story. This creates a live transcript of the story as it unfolds.

Do at least two full rounds.

After two rounds, find a way to bring the story to a satisfying end.

The goal is not to make a perfect story. The goal is to listen, respond, and let the story go somewhere unexpected.

Three Improv Exercises:

Share: Each group reads their best story.


Group Critique

In small groups (3–4 students), you will read and respond to each other’s work.

As you read each other’s work, take notes using the questions below. Be specific. Focus on what is working, what is unclear, and where the story could develop.

Use the feedback to your story to revise your project for final submission next week by May 5th.