-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.html
40 lines (39 loc) · 1.13 KB
/
todo.html
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
<!DOCTYPE html>
<head lang="en-IE">
<meta charset="utf-8">
<title>Pipeline and Todo</title>
</head>
<body>
<main>
<h1>Pipeline</h1>
<div>
<p> 1. Download video + subtitle from youtube (youtube-dl)
<p> 2. convert subtitle in vtt to srt </p>
<p> 3. run the subtitles through a forced aligner (gentle) </p>
<p> 4. Do segmentation <p>
<ul>
<li>Vision</li>
<ul>
<li>off the shelf shot change detection (ML)</li>
<li>more primitive vision like histogram + edge</li>
</ul>
<li>Audio Transcript</li>
<ul>
<li>each sentence gets a segment </li>
<li>sequential topic models</li>
<li>maybe some other things</li>
</ul>
<li>Time</li>
<ul>
<li>equal time, but how many segments? </li>
</ul>
<li>User interaction</li>
<ul>
<li>where users want to go to</li>
<li>what users want to do </li>
</ul>
</ul>
</div>
</main>
</body>
</html>