微信网页插线调试
原来调试微信网页方法是打开
http://debugx5.qq.com
http://debugtbs.qq.com
http://debugmm.qq.com/?forcex5=true
# xweb
http://debugxweb.qq.com/?inspector=true
http://debugx5.qq.com
http://debugtbs.qq.com
http://debugmm.qq.com/?forcex5=true
# xweb
http://debugxweb.qq.com/?inspector=true
现在比较常见的视频流媒体,大部分都是 m3u8 格式的,而对于 m3u8 格式的视频而言,如果你下载过,你会发现它就是一个文本文件,大概也就只有几十 kb,从磁盘大小来看,应该也知道它并不是一个直接的视频文件。
而假如我们想要下载对应的视频文件,直接下载 m3u8,当然是达不到目的的,那么本文就来说说,如何直接下载一个网上的 m3u8 文件,保存成一个比较常规的 mp4 文件。
这个在 Windows 下,应该是有现成的工具可以完成,但是 Mac 就没有了,我也没试过 Windows 的工具,有需要自行搜索。
1、升级到最新版本IDEA
2、双击Shift建 搜索 Registry... (注册表...)
3、找到 ide.experimental开头的选项 全部勾选 重启即可
4、重启IDE,成功切换!
安装 arco-cli
之后无法在命令行使用 arco
命令,出现 command not found
在新主机安装 arco-cli
命令
npm i -g arco-cli
### 提示安装成功
added 628 packages, and audited 629 packages in 45s
51 packages are looking for funding
run `npm fund` for details
16 high severity vulnerabilities
To address issues that do not require attention, run:
npm audit fix
Some issues need review, and may require choosing
a different dependency.
Run `npm audit` for details.
在执行 arco
命令发生 arco: command not found
arco init arco-demo
zsh: command not found: arco
解决这个问题的方式如下:
.npm-global
文件夹mkdir ~/.npm-global
npm prefix
npm config set prefix '~/.npm-global'
export PATH=~/.npm-global/bin:$PATH
bash
配置文件source ~/.zshrc
-g
相关安装即可npm install npm@lastest -g