Skip to content

Commit

Permalink
Modification 👍
Browse files Browse the repository at this point in the history
Yep!
  • Loading branch information
Anime4000 committed Jul 25, 2015
1 parent 09dde9c commit 891d13a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# Nemu Pad
This a IFME extension
# High Frame Rate/InterFrame
AviSynth script generator, make life easier!

documentation will be constructed
## 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
6 changes: 3 additions & 3 deletions hfrgen/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 891d13a

Please sign in to comment.