Compare commits
2 Commits
1655386c0c
...
dc36c90901
Author | SHA1 | Date | |
---|---|---|---|
dc36c90901 | |||
46538aa259 |
@ -1,7 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
|
||||||
|
# NO SPACES, it's haaaard T_T
|
||||||
|
|
||||||
if [ ! -f "$@" ]; then
|
if [ ! -f "$@" ]; then
|
||||||
echo "file to thumbnailify plz"
|
echo "file to thumbnailify plz"
|
||||||
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
fullfilename=$(basename -- "$@")
|
fullfilename=$(basename -- "$@")
|
||||||
@ -23,7 +27,7 @@ fi
|
|||||||
echo "file testframe.mp4" > thumbnailism.txt
|
echo "file testframe.mp4" > thumbnailism.txt
|
||||||
echo "file $fullfilename" >> thumbnailism.txt
|
echo "file $fullfilename" >> thumbnailism.txt
|
||||||
|
|
||||||
ffmpeg -i "$fullfilename" -ss 1.5 -to 1.51666 testframe.mp4
|
ffmpeg -i "$fullfilename" -ss 3 -t 0.01666 testframe.mp4
|
||||||
ffmpeg -f concat -i thumbnailism.txt -c copy output.mp4
|
ffmpeg -f concat -i thumbnailism.txt -c copy output.mp4
|
||||||
|
|
||||||
mv "$fullfilename" "$filename""_thumbless.$extension"
|
mv "$fullfilename" "$filename""_thumbless.$extension"
|
||||||
|
27
utility web pages/caption.html
Normal file
27
utility web pages/caption.html
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<style type="text/css">
|
||||||
|
body{
|
||||||
|
padding:0;
|
||||||
|
margin:0;
|
||||||
|
background-color: #00FF00;
|
||||||
|
}
|
||||||
|
.wrap {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap span {
|
||||||
|
align-self: flex-end;
|
||||||
|
color: #DEDEDE;
|
||||||
|
font-size: 5em;
|
||||||
|
width:100%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="wrap" style="width:3840; height:2160; margin:0">
|
||||||
|
<span>(Dramatic Reenactment)</span>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
43
utility web pages/credit.html
Normal file
43
utility web pages/credit.html
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<style type="text/css">
|
||||||
|
body{
|
||||||
|
background-color: #00FF00;
|
||||||
|
padding:0;
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
.credit{
|
||||||
|
color: #DEDEDE;
|
||||||
|
font-size: 3em;
|
||||||
|
background-color: #333333;
|
||||||
|
border: 5px solid #CECECE;
|
||||||
|
border-radius: 1em;
|
||||||
|
display:inline-flex;
|
||||||
|
flex-flow: row nowrap;
|
||||||
|
}
|
||||||
|
.number{
|
||||||
|
padding:0.75em;
|
||||||
|
border-right: 5px solid #CECECE;
|
||||||
|
}
|
||||||
|
.text{
|
||||||
|
padding: 0.25em 1em 0.25em 0.25em;
|
||||||
|
}
|
||||||
|
img.src{
|
||||||
|
height:1em;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div style="width:3840; height:2160; margin:0">
|
||||||
|
<div class="credit">
|
||||||
|
<div class="number">
|
||||||
|
[14]
|
||||||
|
</div>
|
||||||
|
<div class="text">
|
||||||
|
Zaha Hadid Architects' King Abdullah Petroleum Studies and Research Center<br />
|
||||||
|
<img class="src" src="youtube.png" />/ArchDaily
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
utility web pages/vimeo.png
Normal file
BIN
utility web pages/vimeo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
BIN
utility web pages/youtube.png
Normal file
BIN
utility web pages/youtube.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Loading…
Reference in New Issue
Block a user