Initial commit — M3U playlist tool with MP3/AAC encoding
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using System.Diagnostics;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace m3uTool.Tests
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[TestFixture]
|
||||
public class Mp3EncodingOptionsTests
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Test]
|
||||
public void Mp3EncodingOptionsTest()
|
||||
{
|
||||
var e = new Mp3EncodingOptions();
|
||||
e.ChannelMode = ChannelMode.SingleChannel;
|
||||
e.Infile = "-";
|
||||
string arguments = e.GetCommandLineArguments();
|
||||
Debug.WriteLine(arguments);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user