mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 05:43:54 +03:00
[PR #15502] [MERGED] Fix font extraction for certain transcoding settings #14336
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/jellyfin/jellyfin/pull/15502
Author: @Iksas
Created: 11/13/2025
Status: ✅ Merged
Merged: 11/14/2025
Merged by: @crobibero
Base:
release-10.11.z← Head:attachment-extractor-fix📝 Commits (1)
0fa952ffix missing font extraction for certain transcoding settings📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
MediaBrowser.MediaEncoding/Transcoding/TranscodeManager.cs(+1 -1)📄 Description
This PR fixes an issue where attached fonts are not extracted under certain conditions.
This can cause affected subtitles to be rendered in a default font, if the fonts are not present in the attachment cache.
Steps to reproduce
Burn subtitlestoAuto, and enable theAlways burn in subtitle when transcodingcheckbox.rm -rf /config/data/attachments/*In the logs, output from
MediaBrowser.MediaEncoding.Attachments.AttachmentExtractoris missing when the bug occurs:Changes
As a fix, this PR adds an additional check to
TranscodeManagerto extract attachments if a subtitle is active, and theAlwaysBurnInSubtitleWhenTranscodingsetting is set.Because
TranscodeManageris only used while transcoding, it's not necessary to explicitly check if we're transcoding.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.