add some videos

This commit is contained in:
idk
2020-10-08 21:30:22 -04:00
parent 423d729e06
commit 2f4d7b68b4
5 changed files with 7 additions and 7 deletions

Binary file not shown.

View File

@ -4,7 +4,7 @@
<title>idk's home page</title>
<link rel="stylesheet" type="text/css" href ="style.css" />
<meta http-equiv="i2p-location" content="http://b2o47zwxqjbn7jj37yqkmvbmci7kqubwgxu3umqid7cexmc7xudq.b32.i2p"/>
<meta http-equiv="i2p-torrentlocation" content="magnet:?xt=urn:btih:b889b34b74bb7e9e3e40dea72a8a7c45978ae16e"/>
<meta http-equiv="i2p-torrentlocation" content="magnet:?xt=urn:btih:f3f60f3d0a5a19c44950de6ac3ffcf581a9fa81d"/>
</head>
<body>
<h1>idk's home page</h1>

View File

@ -4,7 +4,7 @@
<title>idk's home page</title>
<link rel="stylesheet" type="text/css" href ="style.css" />
<meta http-equiv="i2p-location" content="http://b2o47zwxqjbn7jj37yqkmvbmci7kqubwgxu3umqid7cexmc7xudq.b32.i2p"/>
<meta http-equiv="i2p-torrentlocation" content="magnet:?xt=urn:btih:b889b34b74bb7e9e3e40dea72a8a7c45978ae16e"/>
<meta http-equiv="i2p-torrentlocation" content="magnet:?xt=urn:btih:f3f60f3d0a5a19c44950de6ac3ffcf581a9fa81d"/>
</head>
<body>
<h1>Infographics Gallery</h1>

View File

@ -4,7 +4,7 @@
<title>idk's home page</title>
<link rel="stylesheet" type="text/css" href ="style.css" />
<meta http-equiv="i2p-location" content="http://b2o47zwxqjbn7jj37yqkmvbmci7kqubwgxu3umqid7cexmc7xudq.b32.i2p"/>
<meta http-equiv="i2p-torrentlocation" content="magnet:?xt=urn:btih:b889b34b74bb7e9e3e40dea72a8a7c45978ae16e"/>
<meta http-equiv="i2p-torrentlocation" content="magnet:?xt=urn:btih:f3f60f3d0a5a19c44950de6ac3ffcf581a9fa81d"/>
</head>
<body>
<h1>Video Gallery</h1>
@ -14,11 +14,11 @@ just talks that I have personally given because I didn't want to
download them all at once.</p>
<ul><li>
<video>
<source src="/video/torontotalk.webm" type="video/webm">
<source src="video/torontotalk.webm" type="video/webm">
</video>
</li><li>
<video>
<source src="/video/monerotalk.mp4" type="video/mp4">
<source src="video/monerotalk.mp4" type="video/mp4">
</video>
</li></ul>
<script src="script.js" type="text/javascript"></script>

View File

@ -3,12 +3,12 @@
if echo $1 | grep -q mp4; then
echo " <video>"
echo " <source src=\"/$1\" type=\"video/mp4\">"
echo " <source src=\"$1\" type=\"video/mp4\">"
echo " </video>"
fi
if echo $1 | grep -q webm; then
echo " <video>"
echo " <source src=\"/$1\" type=\"video/webm\">"
echo " <source src=\"$1\" type=\"video/webm\">"
echo " </video>"
fi