mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2025-02-18 00:19:02 -08:00
33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
/*
|
|
* AviOutputArguments.cs
|
|
* Copyright (c) 2008-2009 kbinani
|
|
*
|
|
* This file is part of LipSync.
|
|
*
|
|
* LipSync is free software; you can redistribute it and/or
|
|
* modify it under the terms of the BSD License.
|
|
*
|
|
* LipSync is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
namespace LipSync {
|
|
|
|
public class AviOutputArguments {
|
|
public string AviFile = "";
|
|
public float Start = 0f;
|
|
public float End = 0f;
|
|
public bool StartSpecified = false;
|
|
public bool EndSpecified = false;
|
|
public bool IsWaveMergeRequired = false;
|
|
public bool IsFlvEncodeRequired = false;
|
|
public bool IsMp4EncodeRequired = false;
|
|
public bool IsDeleteIntermediateRequired = false;
|
|
public bool IsTransparent = false;
|
|
public string FileNameParser;
|
|
public System.Drawing.Imaging.ImageFormat ImageFormat;
|
|
public bool UseVfwEncoder = true;
|
|
}
|
|
|
|
}
|