Files
ersatztv/ErsatzTV.FFmpeg/OutputOption/Metadata/MetadataServiceNameOutputOption.cs
T
Jason DoveandGitHub 9471cb55dd upgrade from dotnet 7 to dotnet 8 (#1529)
* upgrade sdk

* fix warnings in ersatztv.ffmpeg

* fix warnings in ersatztv.core

* fix warnings in ersatztv.infrastructure

* fix warnings in ersatztv.application

* disable analysis for migrations projects

* fix warnings in ersatztv.scanner

* fix warnings in ersatztv

* upgrade project framework

* update github actions and dockerfiles
2023-12-30 13:29:57 -06:00

12 lines
368 B
C#

namespace ErsatzTV.FFmpeg.OutputOption.Metadata;
public class MetadataServiceNameOutputOption : OutputOption
{
private readonly string _serviceName;
public MetadataServiceNameOutputOption(string serviceName) => _serviceName = serviceName;
public override string[] OutputOptions => new[]
{ "-metadata", $"service_name=\"{_serviceName}\"" };
}