Skip to content

FAQ_full

lussaczheng edited this page Aug 21, 2019 · 2 revisions

FAQ of full version

下文中:

  • 对于install_zh.batinstall_en.bat ,统一使用 install.bat 简称。
  • “下载”指直接点击并下载;“另存”指右键点击并另存为。

In the following article:

  • For install_zh.bat or install_en.bat, use install.bat for short.
  • "Download" refers to directly clicking and downloading; "Save as" refers to right-clicking and choosing "save as".

常见问题解答

为什么运行脚本后,命令行窗口一闪而过?

此Bug已于 Tag v0.2.0 修复,详见 Issue #2

不使用"start.bat"进行安装

  1. 另存 install_zh.bat
  2. 下载 unzip.exe
  3. 访问 Python 和 FFmpeg 官网,下载 python-3.x.x.exeffmpeg-x.x.x-xxx.zip 适合的版本:
  4. python-3.x.x.exe, ffmpeg-x.x.x-xxx.zip, unzip.exe, 和 install_zh.bat 放在同一文件夹下。
  5. 运行 install_zh.bat,并按照提示完成安装。

以上安装过程适用于以下几种情况:

  • start.bat 不起作用。基本上是由 Web-Request error 引起的。
  • 批量安装。复制可能比下载高效。
  • start.bat 错误地判断了系统语言。

此外,当你不通过 start.bat 而是使用 install_zh.bat 进行安装时,命令行窗口也有可能一闪而过。
但这种情况与 Issue #2 不同,这是由于从 GitHub 网页另存 .bat 文件时,可能出现换行符丢失的情况。

验证换行符是否丢失的方法:
右击文件,选择编辑,即可用记事本打开 install.bat 。如果你发现所有文本都杂乱无章或内容只有几行,则说明是“换行符丢失”。

换行符丢失的 install.bat 看起来像这样:
wrong batch file
而正常的 install.bat 看起来像这样:
right batch file

解决方法:
使用 start.bat 进行安装。或执行以下步骤:

  1. 另存 install_zh.bat
  2. win + R ,输入 wordpad 并按 Enter 以打开写字板
  3. 使用写字板打开 install_zh.bat ,此时换行符应为正常。
  4. 直接保存文件。
  5. 右击 install_zh.bat ,选择编辑以查看,此时换行符应为正常。
  6. 关闭写字板和记事本,尝试重新执行 install_zh.bat 。此时脚本应能正常执行。

FAQ

Why the console window just flashes and disappears when I run the batch?

This bug was fixed at Tag v0.2.0 . See Issue #2.

Installation without "start.bat"

  1. Save as install_en.bat .
  2. Download unzip.exe .
  3. Visit the website of Python and FFmpeg. Download the right version of python-3.x.x.exe and ffmpeg-x.x.x-xxx.zip :
  4. Move python-3.x.x.exe, ffmpeg-x.x.x-xxx.zip, unzip.exe, and install_en.bat into a same directory.
  5. Run install_en.bat , and follow the instructions to finish installation.

The above installation procedure applys to these several situations:

  • The start.bat doesn't work. Basically it is caused by Web-Request error.
  • Batch/Volume installation. Copying may be better than downloading.
  • The start.bat did a wrong judgment about your system language.