forked from antiboredom/videogrep
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ddc333f
commit 9fde3d8
Showing
3 changed files
with
183 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Videogrep</title> | ||
<link rel="stylesheet" href="style.css" /> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Videogrep</h1> | ||
|
||
<p> | ||
Videogrep is a command line tool written by <a href="https://lav.io">Sam Lavigne</a> that | ||
searches through dialog in video files and makes "supercuts" based on what it finds. It will | ||
recognize .srt or .vtt subtitle tracks, or transcriptions that can be generated with vosk. | ||
</p> | ||
|
||
<p> | ||
For installation, usage instructions, and code, see: | ||
<a href="https://github.com/antiboredom/videogrep" | ||
>https://github.com/antiboredom/videogrep</a | ||
>. | ||
</p> | ||
|
||
<h2>Gallery</h2> | ||
|
||
<p> | ||
Here are a few videos I've made using Videogrep. For an infinite stream, see | ||
<a href="https://twitter.com/CSPANFive">CSPAN-5</a>. | ||
</p> | ||
|
||
<div class="gallery"> | ||
<div class="item"> | ||
<div class="embed"> | ||
<iframe | ||
src="https://www.youtube.com/embed/nGHbOckpifw" | ||
frameborder="0" | ||
allowfullscreen | ||
></iframe> | ||
</div> | ||
<p class="caption">The Meta Experience</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<div class="embed"> | ||
<iframe | ||
src="https://www.youtube.com/embed/lgFnF77AyeI" | ||
frameborder="0" | ||
allowfullscreen | ||
></iframe> | ||
</div> | ||
<p class="caption">Donald Trump saying his own name for over 4 minutes (sorry)</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<div class="embed"> | ||
<iframe | ||
src="https://www.youtube.com/embed/PQMzOUeprlk" | ||
frameborder="0" | ||
allowfullscreen | ||
></iframe> | ||
</div> | ||
<p class="caption">All the instances of the phrase "time" in the movie "In Time"</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<div class="embed"> | ||
<iframe | ||
src="https://www.youtube.com/embed/qEtEbXVbYJQ" | ||
frameborder="0" | ||
allowfullscreen | ||
></iframe> | ||
</div> | ||
<p class="caption">Silences in "Total Recall"</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<div class="embed"> | ||
<iframe | ||
src="https://www.youtube.com/embed/D7pymdCU5NQ" | ||
frameborder="0" | ||
allowfullscreen | ||
></iframe> | ||
</div> | ||
<p class="caption">A presidential press secretary telling us what he can tell us</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<div class="embed"> | ||
<iframe | ||
src="https://www.youtube.com/embed/DAR0RBbua34" | ||
frameborder="0" | ||
allowfullscreen | ||
></iframe> | ||
</div> | ||
<p class="caption">Gerund determiner adjective noun combos in ted talks</p> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
body { | ||
font: 18px "Times New Roman", "Times", serif; | ||
margin: 0px; | ||
} | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4 { | ||
font-weight: normal; | ||
} | ||
|
||
a { | ||
color: red; | ||
} | ||
|
||
.container { | ||
max-width: 1100px; | ||
margin: auto; | ||
padding: 20px; | ||
} | ||
|
||
div.code { | ||
background-color: #eee; | ||
padding: 10px; | ||
} | ||
code { | ||
font-size: 13px; | ||
background-color: #eee; | ||
} | ||
|
||
h4 code { | ||
border-bottom: 1px solid #ccc; | ||
padding: 3px; | ||
font-weight: bold; | ||
} | ||
|
||
.gallery { | ||
display: grid; | ||
grid-template-columns: 2fr 2fr; | ||
grid-column-gap: 20px; | ||
} | ||
|
||
.embed { | ||
position: relative; | ||
padding-bottom: 56.25%; | ||
height: 0; | ||
overflow: hidden; | ||
max-width: 100%; | ||
} | ||
|
||
.embed iframe, | ||
.embed object, | ||
.embed embed { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.caption { | ||
font-size: 0.8em; | ||
margin: 0; | ||
margin-top: 5px; | ||
text-align: center; | ||
} | ||
.item { | ||
margin: 10px 0px; | ||
} |