上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 95 下一页
摘要: 问题: 32位程序在64位系统上调用GetModuleFileNameEx()遍历获取64位进程的全路径失败,得到的路径都为空。 根据官方的说法: For the best results use the following table to convert paths. ... 阅读全文
posted @ 2016-07-01 00:45 N3verL4nd 阅读(538) 评论(0) 推荐(0) 编辑
摘要: 借助于clip.exe(C:\Windows\System32\clip.exe) C:\Windows\System32>clip /?CLIP描述: 将命令行工具的输出重定向到 Windows 剪贴板。这个文本输出可以被粘贴 到其他程序中。参数列表: /? ... 阅读全文
posted @ 2016-06-30 23:29 N3verL4nd 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 我们都知道在WIN7下,可以按shift+鼠标右键->在此处打开命令窗口 或者在 输入cmd,回车 那么,怎样去实现这样的功能呢? //当前目录下开启CMD#include #include int main(){ TCHAR pathString[100] = { 0 }; TCHAR ... 阅读全文
posted @ 2016-06-29 13:45 N3verL4nd 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 使用ffmpeg类库进行开发的时候,打开流媒体(或本地文件)的函数是avformat_open_input()。 其中打开网络流的话,前面要加上函数avformat_network_init()。 一般情况下,只要传入流媒体的url就可以了。但是在打开某些流媒体的时候,可能需要附加一些参数... 阅读全文
posted @ 2016-06-18 19:28 N3verL4nd 阅读(2444) 评论(0) 推荐(1) 编辑
摘要: They're short for multiplexing and demultiplexing. Multiplexing means combining different types of data in a single stream or file. On this board, t... 阅读全文
posted @ 2016-06-11 22:56 N3verL4nd 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 官网:https://ffmpeg.zeranoe.com/builds/ 包含三个版本:Static、Shared以及Dev Static --- 包含3个应用程序:ffmpeg.exe , ffplay.exe , ffprobe.exe,体积都很大,相关的DLL已经被编译到exe里... 阅读全文
posted @ 2016-06-10 23:21 N3verL4nd 阅读(418) 评论(0) 推荐(0) 编辑
摘要: #include #include /*extern "C"{#include }*/int main(int argc, char **argv){ AVFormatContext *fmt_ctx = NULL; int ret; av_register_all(); if ((ret = ... 阅读全文
posted @ 2016-06-10 22:36 N3verL4nd 阅读(1113) 评论(0) 推荐(0) 编辑
摘要: #include int main(){ HWND parentHwnd, childHwnd; INPUT input[4]; parentHwnd = FindWindow(TEXT("Notepad"), NULL); if (parentHwnd) { childHwnd = Fin... 阅读全文
posted @ 2016-06-08 20:52 N3verL4nd 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 应用场景比较鸡肋:需要在广电网络环境下(播放视频貌似只能在广电内网,实时图片内外网则都可以显示)。 用自己笨拙的LUA写了个脚本: local file = io.open("request.xml", "r") local request_body = file:read("*a") ... 阅读全文
posted @ 2016-06-03 22:56 N3verL4nd 阅读(2300) 评论(0) 推荐(0) 编辑
摘要: local http=require("socket.http"); local request_body = [[login=user&password=123]] local response_body = {} local res, code, response_headers = ... 阅读全文
posted @ 2016-05-24 22:30 N3verL4nd 阅读(1351) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 95 下一页