加载中
vscode 调试npm run

把dev改成要调试的命令即可 // launch.json { "version": "0.2.0", "configurations": [ { "type": "node", "name": "Launch", "request": "launch", "runtimeExecutable": "npm", "runtime...

npm
2023/03/21 22:18
89
收敛最快的魔改ESPCN, DepthwiseConv2D

input_image = Input(shape=(None, None, self.channels), name='x') x = DepthwiseConv2D( 3, depth_multiplier= int(64 / self.channels), kernel_initializer="he_normal", padding='same...

2023/02/25 17:58
102
GLES 学习归纳

不要在循环里创建opengl资源, 尽量复用

2023/02/22 12:16
36
ffmpeg 常用命令

查看I帧: ffprobe xxx.mpu8 -show_frames -of csv|grep I 推流: ffmpeg -re -stream_loop -1 -i .\xxx.mp4 -c:v libx264 -f flv "rtmp://xxx" 转码: ffmpeg -i "xxx.mp4" -c:a copy -c:v...

2023/02/21 23:39
52
一些linux常用命令

通过内核命令查看日志: strace -e trace=all -s 2000 -f -p 28427 2>&1 |grep -v futex|grep DuteWxJSSDKConfigHandler -A100 -B5|more strace -e trace=all -s 2000 -f -p 28427 2>&1 -......

2023/02/21 23:34
44
[ckeditor4] 遍历两个dom之间的node

用法:domIterator(range.startContainer, range.endContainer) 代码: function domIterator(startNode, endNode, ctx ) { ctx = ctx || { exitNode: endNode, ret: [], exit: false, findi...

2022/10/28 11:20
53
VSCode 连接 wsl, 保存文件提示无权限

解决方法:默认使用root登录wsl 在wsl中建立文件/etc/wsl.conf, 内容如下 [user] default=root 然后重启wsl, 在cmd输入如下命令 ::显示wsl系统列表 > wsl -l 适用于 Linux 的 Windows 子系统...

2022/09/14 17:05
3.8K
ffmpeg 转码/cpp

在调用av_interleaved_write_frame()前,需要设置packet的time_base和stream_index: av_packet_rescale_ts(packet, encoder->time_base, oStream->time_base); packet->stream_index = oSt...

2022/09/07 17:15
70
ffmpeg libavformat: Invalid data found when processing input

版本较低的时候需要调用: avformat_network_init(); av_register_all(); avcodec_register_all();

2022/09/07 16:23
334
安卓 espresso 测试流程, 案例

1.运行AS的 run->Record Espresso Test, 之后关掉,这一步会自动添加依赖关系 2.在ExampleInstrumentedTest或其他安卓测试类中定义 ↓,Activity为启动Activity @Rule public ActivityScena...

2022/08/25 09:21
200
安卓 ListView 遥控问题

要实现通过遥控移动ListView的焦点, 需要设置listView.setItemsCanFocus(true); ,否则会出现按几次遥控才能移动焦点的情况。

2022/04/13 11:05
169
webrtc 的 rtc::scoped_refptr 踩坑

多次将scoped_refptr赋值给另一个scoped_refptr对象造成了内存泄漏, 使用std::scoped_ptr包装一次后恢复正常,原因不明。 void main() { rtc::scoped_refptr<XXX> a = XXX::Create(); rtc::...

2022/02/22 17:52
150
FFMPEG 处理GIF的一些问题/cpp

1. decoder的 time_base 可能为 0, 100 2.decode后的AVFrame 的 pts 是0或者一个MIN_LONG_LONG 3.使用AVPacket的pts和stream的time_base才能得出正确的时间 4. pts 转毫秒: av_rescale_q(p...

vue3+vuex+typescript 自动推导store的state的类型

vuex4 提供了key来实现强类型,但需要开发者自己定义state类型,使用modules的时候会非常不便, 稍微研究了一下typescript的类型, 可以实现从多个modules中推导出root state的类型。 第一步...

让video.js 支持播放 MediaStream

扩展 要让video.js支持播放MediaStream,只需要给videojs的默认tech html5添加一个SourceHandler function videojsSupportMediaStream() { var Html5Tech = videojs.getTech("html5"); Ht.....

2021/06/09 16:27
3.1K

没有更多内容

加载失败,请刷新页面

返回顶部
顶部