Browse Source

fix qsv hevc encoder (#956)

* update dependencies

* fix typo in qsv hevc encoder param

* update changelog
pull/957/head
Jason Dove 4 years ago committed by GitHub
parent
commit
7f4004c228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      CHANGELOG.md
  2. 2
      ErsatzTV.Core/ErsatzTV.Core.csproj
  3. 2
      ErsatzTV.FFmpeg/Encoder/Qsv/EncoderHevcQsv.cs
  4. 2
      ErsatzTV/ErsatzTV.csproj

2
CHANGELOG.md

@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
### Fixed
- Fix typo introduced in `0.6.7-beta` that stopped QSV HEVC encoder from working
## [0.6.7-beta] - 2022-09-05
### Fixed

2
ErsatzTV.Core/ErsatzTV.Core.csproj

@ -24,7 +24,7 @@ @@ -24,7 +24,7 @@
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Serilog" Version="2.11.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
</ItemGroup>
<ItemGroup>

2
ErsatzTV.FFmpeg/Encoder/Qsv/EncoderHevcQsv.cs

@ -25,7 +25,7 @@ public class EncoderHevcQsv : EncoderBase @@ -25,7 +25,7 @@ public class EncoderHevcQsv : EncoderBase
public override StreamKind Kind => StreamKind.Video;
public override IList<string> OutputOptions =>
new[] { "-c:v", "hevc_qsv", "-low_power", "0", "-look_head", "0" };
new[] { "-c:v", "hevc_qsv", "-low_power", "0", "-look_ahead", "0" };
// need to upload if we're still in software and a watermark is used
public override string Filter

2
ErsatzTV/ErsatzTV.csproj

@ -56,7 +56,7 @@ @@ -56,7 +56,7 @@
<ItemGroup>
<PackageReference Include="Bugsnag.AspNet.Core" Version="3.1.0" />
<PackageReference Include="FluentValidation" Version="11.2.1" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.2.1" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.2.2" />
<PackageReference Include="HtmlSanitizer" Version="7.1.542" />
<PackageReference Include="LanguageExt.Core" Version="4.2.9" />
<PackageReference Include="Markdig" Version="0.30.3" />

Loading…
Cancel
Save