lipsync/Boare.Lib.Media/IAviWriter.cs
2024-05-20 00:17:44 +00:00

35 lines
831 B
C#

/*
* IAviWriter.cs
* Copyright (c) 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.
*/
using System;
using System.Drawing;
namespace Boare.Lib.Media {
public interface IAviWriter {
void AddFrame( Bitmap frame );
void Close();
bool Open( string file, uint scale, uint rate, int width, int height, IntPtr hwnd );
Size Size {
get;
}
uint Scale {
get;
}
uint Rate {
get;
}
}
}