Updated ReadMe file + slightly tweak install script.
This commit is contained in:
parent
0ece9fed40
commit
47a0a1f8c7
@ -24,6 +24,8 @@ This program runs on Windows XP with Service Pack 2 and later.
|
||||
64-Bit Windows is highly recommended, but 32-Bit Windows works as well.
|
||||
The CPU should support at least the MMX and SSE1 instruction sets.
|
||||
Avisynth 2.5.x must be installed in order to use Avisynth (.avs) input.
|
||||
YV16/YV24 color spaces only supported by Avisynth 2.6 [see section 9].
|
||||
Audio encoding NOT officially supported by x264 yet [see section 10].
|
||||
|
||||
|
||||
3. Anti-Virus Warning
|
||||
@ -159,7 +161,7 @@ Avs2YUV and "--output-csp i422" to x264 to avoid 4:2:0 downsampling.
|
||||
|
||||
|
||||
10. Audio Processing/Encoding
|
||||
----------------------------
|
||||
-----------------------------
|
||||
|
||||
This application is a front-end to the x264 encoder. And, as x264 does
|
||||
NOT support audio processing/encoding yet, there is NO explicit support
|
||||
@ -189,7 +191,7 @@ For convenience, the "--audiofile $(INPUT)" parameter may be used.
|
||||
|
||||
|
||||
11. Command-line Syntax
|
||||
----------------------
|
||||
-----------------------
|
||||
|
||||
The following command-line switches are available:
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define VER_X264_MAJOR 2
|
||||
#define VER_X264_MINOR 0
|
||||
#define VER_X264_PATCH 2
|
||||
#define VER_X264_BUILD 220
|
||||
#define VER_X264_BUILD 222
|
||||
|
||||
#define VER_X264_MINIMUM_REV 2146
|
||||
#define VER_X264_CURRENT_API 120
|
||||
|
11
z_build.bat
11
z_build.bat
@ -106,6 +106,13 @@ REM ///////////////////////////////////////////////////////////////////////////
|
||||
"%UPX3_PATH%\upx.exe" --brute "%PACK_PATH%\*.exe"
|
||||
"%UPX3_PATH%\upx.exe" --best "%PACK_PATH%\*.dll"
|
||||
|
||||
REM ///////////////////////////////////////////////////////////////////////////
|
||||
REM // Attributes
|
||||
REM ///////////////////////////////////////////////////////////////////////////
|
||||
attrib +R "%PACK_PATH%\*.exe"
|
||||
attrib +R "%PACK_PATH%\*.dll"
|
||||
attrib +R "%PACK_PATH%\*.txt"
|
||||
|
||||
REM ///////////////////////////////////////////////////////////////////////////
|
||||
REM // Setup install parameters
|
||||
REM ///////////////////////////////////////////////////////////////////////////
|
||||
@ -141,7 +148,9 @@ echo !include `%~dp0\etc\finalization.nsh` >> "%NSI_FILE%"
|
||||
echo !include `%~dp0\etc\version.nsh` >> "%NSI_FILE%"
|
||||
echo !insertmacro X264_VERSIONINFO `%ISO_DATE%` `%ISO_TIME%` `%BUILD_NO%` >> "%NSI_FILE%"
|
||||
echo !insertmacro SECTION_BEGIN >> "%NSI_FILE%"
|
||||
echo File /r `%PACK_PATH%\*.*` >> "%NSI_FILE%"
|
||||
echo File /a /r `%PACK_PATH%\*.exe` >> "%NSI_FILE%"
|
||||
echo File /a /r `%PACK_PATH%\*.dll` >> "%NSI_FILE%"
|
||||
echo File /a /r `%PACK_PATH%\*.txt` >> "%NSI_FILE%"
|
||||
echo WriteRegStr HKLM `${ZIP2EXE_REGPATH}` InstallLocation `$INSTDIR` >> "%NSI_FILE%"
|
||||
echo !include `%~dp0\etc\shortcut.nsh` >> "%NSI_FILE%"
|
||||
echo !insertmacro SECTION_END >> "%NSI_FILE%"
|
||||
|
Loading…
Reference in New Issue
Block a user