Remplacement page IPNS par lien IPFS direct

This commit is contained in:
Boris 2021-09-29 18:18:07 +02:00
parent 9ff050917c
commit 85415105c8
1 changed files with 11 additions and 2 deletions

View File

@ -6,7 +6,7 @@ $i = 0;
$div = 9;
$r = rand(0, ($div - 1));
$j = 0;
$maxElt = 16;
$maxElt = 3;
// require('php-ipfs-api/vendor/autoload.php');
// use Cloutier\PhpIpfsApi\IPFS;
@ -85,13 +85,13 @@ foreach ($videos as $v) {
continue;
}
++$j;
if ($j > $maxElt) {
break;
}
*/
$duration = NULL;
$thumbURL = '';
$videoTitle = NULL;
@ -293,6 +293,7 @@ foreach ($videosList as $video) {
$href = 'youtube_watch.php?uri='. $video['uri'] . '&name='. urlencode($displayTitle) .'&mime='. $video['mime'];
/*
echo '
<p class="thumbnail">
<a href="/ipns/'. $video['ipnsHash'] .'">
@ -300,6 +301,14 @@ foreach ($videosList as $video) {
</a>
</p>
';
*/
echo '
<p class="thumbnail">
<a href="'. $href .'">
<img src="'. $video['thumbURL'] . '" alt="'. $displayTitle . '" />
</a>
</p>
';
if (isset($video['duration'])) {