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
+25
View File
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace m3uTool
{
public partial class M3uToAac : Form
{
public class Mp3ToAacConversionOptions
{
string[] mInputFilenames;
string[] mOutputFilenames;
}
public M3uToAac()
{
InitializeComponent();
}
}
}