我使用wget下载整个网站。
我使用了以下命令(在Windows 7中):
wget ^
--recursive ^
-A "*thread*, *label*" ^
--no-clobber ^
--page-requisites ^
--html-extension ^
--domains example.com ^
--random-wait ^
--no-parent ^
--background ^
--header="Accept: text/html" --user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0" ^
http://example.com/
Run Code Online (Sandbox Code Playgroud)
2天后,我的小弟弟重新启动了PC,
因此我尝试恢复已停止的进程
,并在命令中添加了以下内容
--continue ^
Run Code Online (Sandbox Code Playgroud)
所以代码看起来像
wget ^
--recursive ^
-A "*thread*, *label*" ^
--no-clobber ^
--page-requisites ^
--html-extension ^
--domains example.com ^
--random-wait ^
--no-parent ^
--background ^
--continue ^
--header="Accept: text/html" --user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; …Run Code Online (Sandbox Code Playgroud) 我写阿拉伯语文本到视频,它工作正常但问题是阿拉伯语言是从右到左书写所以文本必须右对齐而不是左边我得到像这样的文字
它应该是这样的
我的代码
ffmpeg -y -i input.mp4 -vf "drawtext=text_shaping=1:fontfile=C\/:/Windows/Fonts/tradbdo.ttf:\
textfile=text-new.txt:fontcolor=white:fontsize=40:x=w-tw:y=h-50*t:" -c:v libx264 output.mp4
Run Code Online (Sandbox Code Playgroud)