26 lines
479 B
C#
26 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
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"; }
|
|
}
|
|
}
|
|
}
|