mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-03 22:37:53 +10:00
15 lines
736 B
HTML
15 lines
736 B
HTML
<!-- Media thumbnail - shows video/audio player or placeholder -->
|
|
<div class="extractor-thumbnail media-thumbnail" style="width: 100%; height: 100px; overflow: hidden; background: #1a1a1a; display: flex; align-items: center; justify-content: center;">
|
|
<video src="{{ output_path }}"
|
|
style="width: 100%; height: 100px; object-fit: contain;"
|
|
poster=""
|
|
preload="metadata"
|
|
muted
|
|
onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
|
|
</video>
|
|
<div style="display: none; flex-direction: column; align-items: center; color: #888; font-size: 12px;">
|
|
<span style="font-size: 32px;">🎬</span>
|
|
<span>Media</span>
|
|
</div>
|
|
</div>
|