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
|
|
|
|
|
{
|
2021-03-15 22:48:43 +01:00
|
|
|
|
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
|
|
|
|
|
{
|
2020-05-08 11:07:51 +02:00
|
|
|
|
return FFMpeg.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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|