上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页
摘要: 这里以`gstreamer`官方的第一个[Tutorials](https://gstreamer.freedesktop.org/documentation/tutorials/basic/hello-world.html?gi-language=c)为例子,因为这个问题是在学习gstreamer 阅读全文
posted @ 2023-08-02 16:53 thammer 阅读(393) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/yanbixing123/article/details/52970956 阅读全文
posted @ 2023-08-02 10:24 thammer 阅读(31) 评论(0) 推荐(0)
摘要: ## 参考自[网道](https://wangdoc.com/bash/variable) Bash 提供四个特殊语法,跟变量的默认值有关,目的是保证变量不为空。 - **如果变量为空则返回默认值,否则返回变量本来的值** ```shell ${varname:-defaultval} ``` 上面 阅读全文
posted @ 2023-07-26 16:32 thammer 阅读(68) 评论(0) 推荐(0)
摘要: xl2tpd-control是xl2tpd这个守护进程的控制工具,它可以新增,修改xl2tpd加载到内存里面的配置,(前面文章介绍过的xl2tpd.conf)。它还可以控制xl2tpd的行为,例如发起拨号,断开拨号,查询隧道状态等。它和xl2tpd通信是通过xl2tpd启动`-C`选项指定的管道文件 阅读全文
posted @ 2023-07-14 17:35 thammer 阅读(853) 评论(0) 推荐(0)
摘要: xl2tpd的配置文件xl2tpd.conf一共有3种章节类型: - global 全局配置章节 - lns LNS(L2TP Network Server网络服务器)配置章节,作为服务器时 - lac LAC(L2TP Access Concentrator接入汇聚点)配置章节,作为客户端时 章节 阅读全文
posted @ 2023-07-14 17:20 thammer 阅读(3094) 评论(0) 推荐(0)
摘要: [xl2tpd](https://github.com/xelerance/xl2tpd)是l2tp的一个实现,由xelerance公司开发,所以叫xl2tpd。它Fork自[l2tpd](https://sourceforge.net/projects/l2tpd/)。都是既可以做client也可 阅读全文
posted @ 2023-07-14 14:19 thammer 阅读(961) 评论(0) 推荐(0)
摘要: 实现的ftp下载需要反馈下载进度,但是代码得到的**bytesTotal**始终为-1,直到下载完成那一刻,才变成文件大小。于是分析qt5base的network部分代码: network/access/qnetworkaccessftpbackend.cpp文件中,有如下片段: ```c++ vo 阅读全文
posted @ 2023-06-13 21:35 thammer 阅读(205) 评论(0) 推荐(0)
摘要: 目标机器是一台arm64的板子,由builroot构建。首先添加一项运行配置,可以通过**运行 >编辑配置**来,也可以通过锤子旁边的下拉框来。 ![img.png](https://img2023.cnblogs.com/blog/689637/202306/689637-202306130919 阅读全文
posted @ 2023-06-13 09:53 thammer 阅读(1061) 评论(0) 推荐(0)
摘要: 机器上折腾了一个ubuntu环境,做了大量的定制,准备克隆给其他设备用,结果今天有一个需求需要修改/etc/sudoers,我直接vim修改,拿掉了#include的#号,结果悲剧了,sudo无法执行了。 # User privilege specification root ALL=(ALL:AL 阅读全文
posted @ 2023-05-19 11:48 thammer 阅读(100) 评论(0) 推荐(0)
摘要: 使用gstreamer API实现功能时,我一般先用gst-launch-1.0验证可行性和效果,然后再编码实现,这个过程中需要分析下各element的连接关系,而gstreamer提供了一套机制生成dot文件,方便我们查看各个阶段的dot图。 命令行 命令行只需要设置环境变量GST_DEBUG_D 阅读全文
posted @ 2023-05-13 18:45 thammer 阅读(154) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页