Initial commit — M3U playlist tool with MP3/AAC encoding
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
namespace m3uTool
|
||||
{
|
||||
public class Mp4Encoder : ProcessStreamWrapper
|
||||
{
|
||||
public Mp4Encoder(Mp4EncodingOptions encOpt) : base(encOpt)
|
||||
{
|
||||
}
|
||||
|
||||
public Mp4Encoder(Mp4EncodingOptions encOpt, Stream outputStream)
|
||||
: base(encOpt, outputStream)
|
||||
{
|
||||
}
|
||||
|
||||
protected override string ProcessExecutableFilename
|
||||
{
|
||||
get { return "faac.exe"; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user