feature: Add inline image, video, and link embeds#19
Open
D4M13N-D3V wants to merge 6 commits into
Open
Conversation
added 2 commits
January 24, 2026 01:50
- Images display as thumbnails, click to open full-size viewer - YouTube/Vimeo links show thumbnail and open in browser - Direct video files (.mp4, .webm, .mov, .mkv) show placeholder with play button - Link previews fetch OpenGraph metadata and display preview images - Embeds appear below URLs in chat with proper formatting New dependencies: - jsoup 1.18.3 for HTML parsing - vlcj 4.8.3 for video playback (requires VLC installed) Configuration options in application.yml under irc.embeds: - enabled, images-enabled, videos-enabled, link-previews-enabled - max-thumbnail-width/height, cache-size-bytes, fetch-timeout-ms
- Halve link preview card size (200x150 default) - Center OG image at original size, crop sides - Dark overlay with word-wrapped title and description - Smaller fonts for compact display
added 2 commits
January 24, 2026 02:19
- Add VLCJ-based frame grabbing for direct video file thumbnails - Fix chat not staying anchored to bottom by deferring scroll to after layout
Owner
|
Nice work @D4M13N-D3V |
added 2 commits
January 24, 2026 03:37
- Add JavaFX plugin and web/swing modules for WebView support - Create VideoPlayerPanel using JFXPanel + WebView for inline playback - Support YouTube, Vimeo embeds, and HTML5 video for direct files - Add fullscreen toggle (ESC to exit) - Videos play inline below chat area with close button - Remove VLCJ dependency (no longer requires VLC installed)
…ayback" This reverts commit bc4489e.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
New Dependencies
jsoup 1.18.3- HTML parsing for OpenGraph link previewsvlcj 4.8.3- Video playback for direct video files (requires VLC installed on system)Configuration
New options in
application.ymlunderirc.embeds:Test plan
.png,.jpg,.gif) - should show thumbnail🤖 Generated with Claude Code