33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using AAXClean;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AaxDecrypter
|
|
{
|
|
public interface IDownloadOptions
|
|
{
|
|
event EventHandler<long> DownloadSpeedChanged;
|
|
string DownloadUrl { get; }
|
|
string UserAgent { get; }
|
|
string AudibleKey { get; }
|
|
string AudibleIV { get; }
|
|
TimeSpan RuntimeLength { get; }
|
|
OutputFormat OutputFormat { get; }
|
|
bool TrimOutputToChapterLength { get; }
|
|
bool RetainEncryptedFile { get; }
|
|
bool StripUnabridged { get; }
|
|
bool CreateCueSheet { get; }
|
|
bool DownloadClipsBookmarks { get; }
|
|
long DownloadSpeedBps { get; }
|
|
ChapterInfo ChapterInfo { get; }
|
|
bool FixupFile { get; }
|
|
NAudio.Lame.LameConfig LameConfig { get; }
|
|
bool Downsample { get; }
|
|
bool MatchSourceBitrate { get; }
|
|
bool MoveMoovToBeginning { get; }
|
|
string GetMultipartFileName(MultiConvertFileProperties props);
|
|
string GetMultipartTitle(MultiConvertFileProperties props);
|
|
Task<string> SaveClipsAndBookmarksAsync(string fileName);
|
|
}
|
|
}
|