diff --git a/README.md b/README.md index 6434308..93f8451 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,20 @@ -# D2VSource +## D2VSource This is a project (previously named as MPEG2DecPlus) to modify DGDecode.dll for AviSynth+. -# Usage +### Requirements: + +- AviSynth 2.60 / AviSynth+ 3.4 or later + +- Microsoft VisualC++ Redistributable Package 2022 (can be downloaded from [here](https://github.com/abbodi1406/vcredist/releases)) + +### Usage: ``` D2VSource(string "d2v", int "idct", bool "showQ", int "info", int "upConv", bool "i420", bool "iCC") ``` -## Parameters: +### Parameters: - d2v\ The path of the dv2 file. @@ -52,31 +58,29 @@ This is a project (previously named as MPEG2DecPlus) to modify DGDecode.dll for False: Forse progressive upsampling.\ Default: Auto determination based on the frame flag. -## Exported variables: +### Exported variables: FFSAR_NUM, FFSAR_DEN, FFSAR. -# Building - -## Windows - -Use solution files. +### Building: -## Linux +- Windows\ + Use solution files. -### Requirements - -- Git -- C++17 compiler -- CMake >= 3.16 - -``` -git clone https://github.com/Asd-g/MPEG2DecPlus && \ -cd MPEG2DecPlus && \ -mkdir build && \ -cd build && \ - -cmake .. -make -j$(nproc) -sudo make install -``` +- Linux + ``` + Requirements: + - Git + - C++17 compiler + - CMake >= 3.16 + ``` + ``` + git clone https://github.com/Asd-g/MPEG2DecPlus && \ + cd MPEG2DecPlus && \ + mkdir build && \ + cd build && \ + + cmake .. + make -j$(nproc) + sudo make install + ```