1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "video": "https://api.apify.com/v2/key-value-stores/TQ3xIj3pxw3eDt6l4/records/sample-video.mp4",
12 "prompt": "Summarize this video in 5 bullets. For each bullet, include a rough timestamp (e.g. 0:42) and quote any spoken line that matters.",
13 "skipDestination": true
14};
15
16
17const run = await client.actor("grizzlygriff/video-llm-analyzer").call(input);
18
19
20console.log('Results from dataset');
21console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
22const { items } = await client.dataset(run.defaultDatasetId).listItems();
23items.forEach((item) => {
24 console.dir(item);
25});
26
27