Is there an existing issue for this?
SUMMARY
Viewing NFT images on Oasis Explorer is amazing, but it only supports images. Videos (e.g. mp4 files) are becoming used more frequently but no preview is shown
DESCRIPTION
If we look at this example NFT:
It shows 'No preview available'.
This is because the frontend will only show previews for images, this is implemented at:
|
{isFetched && !nft?.image && <NoPreview placeholderSize={imageSize} />} |
Is there an existing issue for this?
SUMMARY
Viewing NFT images on Oasis Explorer is amazing, but it only supports images. Videos (e.g. mp4 files) are becoming used more frequently but no preview is shown
DESCRIPTION
If we look at this example NFT:
It shows 'No preview available'.
This is because the frontend will only show previews for images, this is implemented at:
explorer/src/app/pages/NFTInstanceDashboardPage/InstanceImageCard.tsx
Line 104 in 08e3a08