Initial commit — M3U playlist tool with MP3/AAC encoding
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System.IO;
|
||||
|
||||
namespace m3uTool
|
||||
{
|
||||
public class Mp3Encoder : ProcessStreamWrapper
|
||||
{
|
||||
public Mp3Encoder(Mp3EncodingOptions encOpt)
|
||||
: base(encOpt)
|
||||
{
|
||||
}
|
||||
|
||||
public Mp3Encoder(Mp3EncodingOptions encOpt, Stream outputStream)
|
||||
: base(encOpt, outputStream)
|
||||
{
|
||||
}
|
||||
|
||||
protected override string ProcessExecutableFilename
|
||||
{
|
||||
get { return @"c:\console\audio\lame.exe"; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user