mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-06 06:20:38 -06:00
49 lines
1.4 KiB
C#
49 lines
1.4 KiB
C#
#if(DEBUG)
|
|
|
|
namespace VideoNodes.Tests;
|
|
|
|
using FileFlows.VideoNodes;
|
|
using FileFlows.VideoNodes.FfmpegBuilderNodes;
|
|
using FileFlows.VideoNodes.VideoNodes;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
[TestClass]
|
|
[TestCategory("Slow")]
|
|
public class AudioToVideoTests : VideoTestBase
|
|
{
|
|
[TestMethod]
|
|
public void AudioToVideo_Waves_h265()
|
|
=> TestStyle(FfmpegBuilderVideoEncode.CODEC_H264, AudioToVideo.VisualizationStyle.Waves);
|
|
|
|
[TestMethod]
|
|
public void AudioToVideo_AudioVectorScope_H265()
|
|
=> TestStyle(FfmpegBuilderVideoEncode.CODEC_H265, AudioToVideo.VisualizationStyle.AudioVectorScope);
|
|
|
|
|
|
[TestMethod]
|
|
public void AudioToVideo_Spectrum_H265_10Bit()
|
|
=> TestStyle(FfmpegBuilderVideoEncode.CODEC_H265_10BIT, AudioToVideo.VisualizationStyle.Spectrum);
|
|
|
|
|
|
|
|
private void TestStyle(string codec, AudioToVideo.VisualizationStyle style)
|
|
{
|
|
var args = GetVideoNodeParameters(AudioMp3);
|
|
|
|
AudioToVideo node = new();
|
|
node.Container = "mkv";
|
|
node.Resolution = "1280x720";
|
|
node.Codec = codec;
|
|
node.HardwareEncoding = false;
|
|
node.Visualization = style;
|
|
if (node.Visualization == AudioToVideo.VisualizationStyle.Waves)
|
|
node.Color = "#007bff";
|
|
node.PreExecute(args);
|
|
int output = node.Execute(args);
|
|
|
|
Assert.AreEqual(1, output);
|
|
}
|
|
}
|
|
|
|
|
|
#endif |