/images/avatar.jpg

木木飞

在centos8系统安装ffmpeg

方法一: 源码安装 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 YASM_VERSION=1.3.0; pwd=`pwd`; cd $pwd; git clone https://code.videolan.org/videolan/x264.git; cd x264; ./configure --enable-shared --enable-static --disable-asm && make && make install; echo '/usr/local/lib' >> /etc/ld.so.conf; ldconfig; cd $pwd; wget http://www.tortall.net/projects/yasm/releases/yasm-$YASM_VERSION.tar.gz;

自定义macbook的右键菜单在Finder增加右键用vscode打开功能

Launch Automator Create New Document Create a new Quick Action Select “Quick Action” Add the Action… Workflow receives current files and folders from Finder. Add a new Run Shell Script action to the workflow. (drag the “Run Shell Script” object, highlighted in the screenshot, to the empty window on the right) Configure the Workflow Set the Pass Input to be as arguments Paste the following in the input box: 1

搭建robot Framework Ride测试框架

方案1 (直接本地安装) 1 2 3 4 5 6 7 8 9 10 # pip install -U robotframework pip install -U -r https://raw.githubusercontent.com/robotframework/RIDE/master/requirements.txt pip install -U robotframework-ride mkdir project; cd project; pipenv --three pipenv install robotframework-ride robotframework-ride 方案2 (docker方案 , 容器运行ride.py +