mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 05:43:54 +03:00
[PR #5534] [CLOSED] Add hwupload filter when sofware decoding and QSV encoding #10549
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/5534
Author: @knackebrot
Created: 3/15/2021
Status: ❌ Closed
Base:
master← Head:master📝 Commits (3)
19a4065Add hwupload filter when sofware decoding and QSV encodingd100b2dOnly add hwupload when qsv encodingcbdd211Merge branch 'master' of github.com:jellyfin/jellyfin📊 Changes
1 file changed (+3 additions, -3 deletions)
View changed files
📝
MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs(+3 -3)📄 Description
Fixes green bars when transcoding MPEG-4 ASP (XviD) files.
Before:

/usr/lib/jellyfin-ffmpeg/ffmpeg -init_hw_device qsv=hw -filter_hw_device hw -i Big.Buck.Bunny.avi -c:v h264_qsv -preset:v medium -vf 'vpp_qsv=w=640:h=360:format=nv12' -b:v 5M output_broken360.mp4After:

/usr/lib/jellyfin-ffmpeg/ffmpeg -init_hw_device qsv=hw -filter_hw_device hw -i Big.Buck.Bunny.avi -c:v h264_qsv -preset:v medium -vf 'hwupload=extra_hw_frames=64,vpp_qsv=w=640:h=360:format=nv12' -b:v 5M output360.mp4Please backport this to release-10.7.z after merge.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.