mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-15 09:43:44 +10:00
- Rename archivebox/plugins/media/ → archivebox/plugins/ytdlp/ - Rename hook script on_Snapshot__63_media.bg.py → on_Snapshot__63_ytdlp.bg.py - Update config.json: YTDLP_* as primary keys, MEDIA_* as x-aliases - Update templates CSS classes: media-* → ytdlp-* - Fix gallerydl bug: remove incorrect dependency on media plugin output - Update all codebase references to use YTDLP_* and SAVE_YTDLP - Add backwards compatibility test for MEDIA_ENABLED alias
10 lines
434 B
HTML
10 lines
434 B
HTML
<!-- YT-DLP embed - video/audio player -->
|
|
<div class="extractor-embed ytdlp-embed" style="width: 100%; height: 100%; min-height: 400px; background: #1a1a1a; display: flex; align-items: center; justify-content: center;">
|
|
<video src="{{ output_path }}"
|
|
style="max-width: 100%; max-height: 100%;"
|
|
controls
|
|
preload="metadata">
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
</div>
|