From 891d13a3357ec2aba2c2aed39dfa41f9159e2acc Mon Sep 17 00:00:00 2001 From: Anime4000 Date: Sun, 26 Jul 2015 04:11:11 +0800 Subject: [PATCH] Modification :+1: Yep! --- README.md | 20 +++++++++++++++++--- hfrgen/frmMain.cs | 6 +++--- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8cb2878..b9eeba0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,18 @@ -# Nemu Pad -This a IFME extension +# High Frame Rate/InterFrame +AviSynth script generator, make life easier! -documentation will be constructed \ No newline at end of file +## API +`public frmMain(string file, string lang)` + +`string file` A file + +`string lang` A language + +## Application +Change `Class Library` to `Windows Application` and run under arguments, example: +``` +C:\>hfrgen.exe eng F:\video\kawaii.mp4 +``` + +## License +Part of GNU GPL v2 \ No newline at end of file diff --git a/hfrgen/frmMain.cs b/hfrgen/frmMain.cs index f1fe9c7..0702235 100644 --- a/hfrgen/frmMain.cs +++ b/hfrgen/frmMain.cs @@ -15,10 +15,10 @@ public partial class frmMain : Form UTF8Encoding UTF8 = new UTF8Encoding(false); // drop BOM StringComparison IC = StringComparison.OrdinalIgnoreCase; // ignore case! - public string _file; // API, set and return value - public string _fileavs; // API, set and return value + string _file; // not API + public string _fileavs; // API (allow host read this value) - public frmMain(string file, string lang) // API, value received from host + public frmMain(string file, string lang) // API, a value received from host { InitializeComponent(); this.Icon = Properties.Resources.lightning_go;