Browse Source

Update audio codec in default FFmpeg profile name (#2608)

Quick fix for mismatch against profile audio codec setting.
pull/2610/head
Joe Kirchoff 2 months ago committed by GitHub
parent
commit
c3c7ff2669
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      ErsatzTV.Infrastructure/Data/DbInitializer.cs

2
ErsatzTV.Infrastructure/Data/DbInitializer.cs

@ -110,7 +110,7 @@ public static class DbInitializer @@ -110,7 +110,7 @@ public static class DbInitializer
await context.ConfigElements.AddAsync(resolutionConfig, cancellationToken);
await context.SaveChangesAsync(cancellationToken);
var defaultProfile = FFmpegProfile.New("1920x1080 x264 ac3", resolutions[2]);
var defaultProfile = FFmpegProfile.New("1920x1080 x264 aac", resolutions[2]);
await context.FFmpegProfiles.AddAsync(defaultProfile, cancellationToken);
await context.SaveChangesAsync(cancellationToken);

Loading…
Cancel
Save