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
+181
View File
@@ -0,0 +1,181 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectType>Local</ProjectType>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{73C5A642-71EF-471C-A82D-70899904C495}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ApplicationIcon>App.ico</ApplicationIcon>
<AssemblyKeyContainerName>
</AssemblyKeyContainerName>
<AssemblyName>m3uTool</AssemblyName>
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
<DefaultClientScript>JScript</DefaultClientScript>
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
<DefaultTargetSchema>IE50</DefaultTargetSchema>
<DelaySign>false</DelaySign>
<OutputType>WinExe</OutputType>
<RootNamespace>m3uTool</RootNamespace>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<StartupObject>
</StartupObject>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>bin\Debug\</OutputPath>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<BaseAddress>285212672</BaseAddress>
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DocumentationFile>
</DocumentationFile>
<DebugSymbols>true</DebugSymbols>
<FileAlignment>4096</FileAlignment>
<NoStdLib>false</NoStdLib>
<NoWarn>
</NoWarn>
<Optimize>false</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningLevel>4</WarningLevel>
<DebugType>full</DebugType>
<ErrorReport>prompt</ErrorReport>
<UseVSHostingProcess>true</UseVSHostingProcess>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release\</OutputPath>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<BaseAddress>285212672</BaseAddress>
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>TRACE</DefineConstants>
<DocumentationFile>
</DocumentationFile>
<DebugSymbols>false</DebugSymbols>
<FileAlignment>4096</FileAlignment>
<NoStdLib>false</NoStdLib>
<NoWarn>
</NoWarn>
<Optimize>true</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningLevel>4</WarningLevel>
<DebugType>none</DebugType>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<ItemGroup>
<Reference Include="nunit.framework, Version=2.2.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL" />
<Reference Include="PipeStream, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\PipeStream\code\bin\Release\PipeStream.dll</HintPath>
</Reference>
<Reference Include="System">
<Name>System</Name>
</Reference>
<Reference Include="System.Data">
<Name>System.Data</Name>
</Reference>
<Reference Include="System.Drawing">
<Name>System.Drawing</Name>
</Reference>
<Reference Include="System.Windows.Forms">
<Name>System.Windows.Forms</Name>
</Reference>
<Reference Include="System.Xml">
<Name>System.XML</Name>
</Reference>
</ItemGroup>
<ItemGroup>
<Content Include="App.ico" />
<Compile Include="DoNothingProgressCallback.cs" />
<Compile Include="Redirect.cs" />
<Compile Include="Tests\HiPerfTimer.cs" />
<Compile Include="KeyedList.cs" />
<Compile Include="LongestCommonSequence.cs" />
<Compile Include="ProcessArguments.cs" />
<Compile Include="IProgressCallback.cs" />
<Compile Include="Mp3Encoder.cs" />
<Compile Include="Mp3EncodingOptions.cs" />
<Compile Include="Mp3FileProperties.cs" />
<Compile Include="ProcessStreamWrapper.cs" />
<Compile Include="Mp4Encoder.cs" />
<Compile Include="Mp4EncodingOptions.cs" />
<Compile Include="AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="M3uCreate.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="M3uMakeByDirectory.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="M3uToAac.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="M3uToAac.Designer.cs">
<DependentUpon>M3uToAac.cs</DependentUpon>
</Compile>
<Compile Include="Mp3ToAacBatch.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Mp3ToAacBatch.Designer.cs">
<DependentUpon>Mp3ToAacBatch.cs</DependentUpon>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Tests\CreateM3uTests.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Tests\LongestCommonSequenceTests.cs" />
<Compile Include="Tests\Mp3EncoderTests.cs" />
<Compile Include="Tests\Mp3EncodingOptionsTests.cs" />
<Compile Include="Tests\Mp3FilePropertiesTests.cs" />
<Compile Include="Tests\Mp4EncoderTests.cs" />
<Compile Include="Tests\Mp4EncodingOptionsTests.cs" />
<Compile Include="Tests\ProgressCallbackTestBase.cs" />
<Compile Include="Tests\ProcessStreamWrapperTests.cs" />
<Compile Include="Tests\TranscodeTest.cs" />
<EmbeddedResource Include="M3uMakeByDirectory.resx">
<DependentUpon>M3uMakeByDirectory.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="M3uToAac.resx">
<SubType>Designer</SubType>
<DependentUpon>M3uToAac.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Mp3ToAacBatch.resx">
<SubType>Designer</SubType>
<DependentUpon>Mp3ToAacBatch.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<SubType>Designer</SubType>
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>copy /D /Y "$(ProjectDir)Tests\"*.mp3 "$(TargetDir)"
copy /D /Y "$(ProjectDir)Tests\"*.wav "$(TargetDir)"
copy /D /Y "$(ProjectDir)Tests\"*.exe "$(TargetDir)"
copy /D /Y "$(ProjectDir)Tests\"*.txt "$(TargetDir)"</PreBuildEvent>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
</Project>