Initial commit — M3U playlist tool with MP3/AAC encoding

This commit is contained in:
2026-05-10 03:02:53 +00:00
commit b14531362b
114 changed files with 14184 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace m3uTool
{
public class ProcessArguments
{
/// <summary>
/// Gets a string representing the command line arguments specified by the properties in the object.
/// </summary>
/// <returns></returns>
public virtual string GetCommandLineArguments()
{
return "";
}
protected string GetQuotedCommandLineArgument(string argument)
{
if (argument.Contains(" ") || argument.Contains("\t"))
{
return "\"" + argument + "\"";
}
return argument;
}
}
}