mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
434 B
15 lines
434 B
using ErsatzTV.Core.Domain; |
|
|
|
namespace ErsatzTV.Core.Interfaces.FFmpeg; |
|
|
|
public interface ISongVideoGenerator |
|
{ |
|
Task<Tuple<string, MediaVersion>> GenerateSongVideo( |
|
Song song, |
|
Channel channel, |
|
Option<ChannelWatermark> maybePlayoutItemWatermark, |
|
Option<ChannelWatermark> maybeGlobalWatermark, |
|
string ffmpegPath, |
|
string ffprobePath, |
|
CancellationToken cancellationToken); |
|
}
|
|
|