FFMpegCore/FFMpegCore.Extensions.System.Drawing.Common/BitmapExtensions.cs

23 lines
615 B
C#
Raw Normal View History

2019-02-08 11:19:40 +01:00
using System;
using System.Drawing;
using System.IO;
2022-03-24 20:19:37 +01:00
namespace FFMpegCore.Extensions.System.Drawing.Common
2019-02-08 11:19:40 +01:00
{
public static class BitmapExtensions
{
public static bool AddAudio(this Image poster, string audio, string output)
2019-02-08 11:19:40 +01:00
{
var destination = $"{Environment.TickCount}.png";
poster.Save(destination);
try
{
2023-01-29 22:17:40 +01:00
return FFMpegImage.PosterWithAudio(destination, audio, output);
2019-02-08 11:19:40 +01:00
}
finally
{
2020-05-08 11:07:51 +02:00
if (File.Exists(destination)) File.Delete(destination);
2019-02-08 11:19:40 +01:00
}
}
}
}