File size: 8,423 Bytes
01488bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
import { startTransition, useEffect, useRef, useState } from "react";
import { Camera, Film } from "lucide-react";
import { BrandMark } from "./components/BrandMark";
import { CaptureScene, type CaptureSource } from "./components/CaptureScene";
import { FluidBackdrop } from "./components/FluidBackdrop";
import { HfIcon } from "./components/HfIcon";
import { VLMProvider } from "./context/VLMProvider";
import { useVLM } from "./context/VLMContext";

const PROMPT_PRESETS = [
  {
    display: "Describe the scene",
    prompt: "Describe the scene in one sentence.",
  },
  {
    display: "What color shirt am I wearing?",
    prompt: "What color shirt am I wearing?",
  },
  {
    display: "What am I holding?",
    prompt: "What am I holding?",
  },
  {
    display: "How old do I look?",
    prompt: "How old do I look?",
  },
] as const;

type Scene = "landing" | "loading" | "source" | "capture";

function disposeSource(source: CaptureSource | null) {
  if (!source) {
    return;
  }

  if (source.kind === "webcam") {
    source.stream.getTracks().forEach((track) => track.stop());
    return;
  }

  URL.revokeObjectURL(source.url);
}

function getErrorMessage(error: unknown) {
  if (error instanceof Error) {
    return error.message;
  }

  return "Something went wrong.";
}

function AppContent() {
  const [scene, setScene] = useState<Scene>("landing");
  const [source, setSource] = useState<CaptureSource | null>(null);
  const [prompt, setPrompt] = useState<string>(PROMPT_PRESETS[0].prompt);
  const [mediaError, setMediaError] = useState<string | null>(null);
  const fileInputRef = useRef<HTMLInputElement>(null);
  const sourceRef = useRef<CaptureSource | null>(null);

  const { error, loadModel, message, progress, status } = useVLM();

  useEffect(() => {
    sourceRef.current = source;
  }, [source]);

  useEffect(() => {
    return () => {
      disposeSource(sourceRef.current);
    };
  }, []);

  useEffect(() => {
    if (scene !== "loading" || status === "ready") {
      return;
    }

    let cancelled = false;

    void loadModel()
      .then(() => {
        if (cancelled) {
          return;
        }

        startTransition(() => {
          setScene("source");
        });
      })
      .catch(() => undefined);

    return () => {
      cancelled = true;
    };
  }, [loadModel, scene, status]);

  const beginExperience = () => {
    startTransition(() => {
      setScene("loading");
    });
  };

  const replaceSource = (nextSource: CaptureSource) => {
    disposeSource(source);
    setMediaError(null);
    setSource(nextSource);

    startTransition(() => {
      setScene("capture");
    });
  };

  const handleUseWebcam = async () => {
    try {
      if (!navigator.mediaDevices?.getUserMedia) {
        throw new Error("Camera access is not available in this browser.");
      }

      const stream = await navigator.mediaDevices.getUserMedia({
        audio: false,
        video: {
          facingMode: "user",
          width: { ideal: 1280 },
          height: { ideal: 720 },
        },
      });

      replaceSource({
        kind: "webcam",
        label: "Live camera",
        stream,
      });
    } catch (cameraError) {
      setMediaError(getErrorMessage(cameraError));
    }
  };

  const openVideoPicker = () => {
    fileInputRef.current?.click();
  };

  const handleVideoSelection = (event: React.ChangeEvent<HTMLInputElement>) => {
    const file = event.target.files?.[0];
    event.target.value = "";

    if (!file) {
      return;
    }

    replaceSource({
      kind: "file",
      label: file.name,
      url: URL.createObjectURL(file),
    });
  };

  const exitCapture = () => {
    disposeSource(source);
    setSource(null);
    setMediaError(null);

    startTransition(() => {
      setScene("source");
    });
  };

  const showBackdrop = scene !== "capture";

  return (
    <>
      {showBackdrop ? <FluidBackdrop subdued={scene === "loading"} /> : null}

      <input
        ref={fileInputRef}
        accept="video/*"
        className="hidden-file-input"
        onChange={handleVideoSelection}
        type="file"
      />

      {scene === "landing" ? (
        <button
          className="landing-scene"
          onClick={beginExperience}
          type="button"
        >
          <div className="landing-inner">
            <BrandMark />

            <div className="hero-copy">
              <h1>LFM2-VL WebGPU</h1>
              <p>
                Real-time video captioning in your browser,
                <br />
                powered by
                <HfIcon className="hero-inline-icon" />
                <span className="hero-inline-wordmark">Transformers.js</span>
              </p>
            </div>

            <div className="begin-prompt">Click anywhere to begin</div>
          </div>
        </button>
      ) : null}

      {scene === "loading" ? (
        <main className="scene-shell scene-shell--centered">
          <BrandMark />

          <section className="loading-card">
            <span className="eyebrow">Loading Model</span>
            <h2>{message}</h2>
            <div aria-hidden="true" className="progress-track">
              <div
                className="progress-fill"
                style={{
                  width: `${Math.max(progress, status === "ready" ? 100 : 6)}%`,
                }}
              />
            </div>
            <p>{Math.round(progress)}%</p>

            {error ? (
              <>
                <div className="error-banner" role="alert">
                  {error}
                </div>
                <button
                  className="primary-button"
                  onClick={() => void loadModel()}
                  type="button"
                >
                  Retry loading
                </button>
              </>
            ) : null}
          </section>
        </main>
      ) : null}

      {scene === "source" ? (
        <main className="scene-shell">
          <div className="scene-header">
            <BrandMark />
          </div>

          <section className="source-card">
            <span className="eyebrow">Choose Input</span>
            <h2>Caption a live camera or a local video file.</h2>
            <p>
              The model is ready. Pick a source and we&apos;ll start captioning
              each frame as quickly as the browser can process it.
            </p>

            <div className="source-grid">
              <button
                className="source-option"
                onClick={() => void handleUseWebcam()}
                type="button"
              >
                <div className="source-option__header">
                  <Camera
                    className="source-option__icon"
                    size={28}
                    strokeWidth={1.9}
                  />
                  <strong>Webcam</strong>
                </div>
                <span>
                  Start a live camera stream and caption it in real time.
                </span>
              </button>

              <button
                className="source-option"
                onClick={openVideoPicker}
                type="button"
              >
                <div className="source-option__header">
                  <Film
                    className="source-option__icon"
                    size={28}
                    strokeWidth={1.9}
                  />
                  <strong>File</strong>
                </div>
                <span>
                  Upload a local clip and run the same caption loop against it.
                </span>
              </button>
            </div>

            {mediaError ? (
              <div className="error-banner" role="alert">
                {mediaError}
              </div>
            ) : null}
          </section>
        </main>
      ) : null}

      {scene === "capture" && source ? (
        <CaptureScene
          mediaError={mediaError}
          onChooseVideo={openVideoPicker}
          onChooseWebcam={handleUseWebcam}
          onDismissMediaError={() => setMediaError(null)}
          onExit={exitCapture}
          onPromptChange={setPrompt}
          prompt={prompt}
          promptPresets={PROMPT_PRESETS}
          source={source}
        />
      ) : null}
    </>
  );
}

function App() {
  return (
    <VLMProvider>
      <AppContent />
    </VLMProvider>
  );
}

export default App;