@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
- Do not allow deleting ffmpeg profiles that are used by channels
- Do not allow deleting default ffmpeg profile
- Allow ffmpeg profiles using VAAPI accel to set h264 video profile
- Fix HLS Direct playback, and make it accessible on separate streaming port
- Fix playback troubleshooting when using multiple watermarks or multiple graphics elements
@ -15,9 +19,7 @@ public class DeleteFFmpegProfileHandler(IDbContextFactory<TvContext> dbContextFa
@@ -15,9 +19,7 @@ public class DeleteFFmpegProfileHandler(IDbContextFactory<TvContext> dbContextFa
@ -29,6 +31,15 @@ public class DeleteFFmpegProfileHandler(IDbContextFactory<TvContext> dbContextFa
@@ -29,6 +31,15 @@ public class DeleteFFmpegProfileHandler(IDbContextFactory<TvContext> dbContextFa
@ -49,7 +60,23 @@ public class DeleteFFmpegProfileHandler(IDbContextFactory<TvContext> dbContextFa
@@ -49,7 +60,23 @@ public class DeleteFFmpegProfileHandler(IDbContextFactory<TvContext> dbContextFa
if(count>0)
{
returnBaseError.New($"Cannot delete FFmpegProfile {request.FFmpegProfileId} that is used by {count} {(count > 1 ? "channels" : "channel")}");
returnBaseError.New(
$"Cannot delete FFmpeg Profile that is used by {count} {(count > 1 ? "channels" : "channel")}");