- 博客(246)
- 资源 (67)
- 问答 (20)
- 收藏
- 关注
原创 Cannot find module ‘C:\Program Files\nodejs\node_modules\electron\cli.js
Cannot find module 'C:\Program Files\nodejs\node_modules\electron\cli.js。
2022-11-06 15:36:13
1330
原创 belr-error-Could not load grammar vcard_grammar because the file could not be located.
linphone
2022-07-27 19:34:32
771
原创 avformat_open_input rtp地址拉流流程
[2022-02-09 19:48:19] ffmpegLog:[AV_LOG_CUSTOM] [avformat_open_input:454] init_input in [2022-02-09 19:48:19] ffmpegLog:[AV_LOG_CUSTOM] [av_probe_input_format2:263] av_probe_input_format2 in [2022-02-09 19:48:19] ffmpegLog:[AV_LOG_CUSTOM] [av_pr...
2022-02-09 20:24:55
920
原创 TS码流分析
TS码流:47 60 00 100000 B0 0D 00 00 C1 00 00 00 01 E0 81 0C 8C BE 32....FF....一、TS头:4个字节47 60 00 100100 01110110 0000 0000 0000sync_bytetransport_error_indicatorpayload_unit_start_indicatortransport_priorityPID00010000transport_scram...
2022-02-09 20:02:55
2970
原创 安装ffmpeg
1.centos安装ffmpegsudo yum install ffmpeg ffmpeg-devel -yCentOs7.5安装FFmpeg Linux centOS下安装FFmpeg2.ubuntu安装ffmpegsudo apt install ffmpegUbuntu下安装ffmpeg完整教程ubuntu下安装ffmpeg3.windows 下Ubuntu环境(WSL)win10 WSL(Ubuntu)编译ffmpeg for Android4.win
2021-12-19 19:38:46
752
原创 无法解析的外部符号 __imp____iob_func
1>SDL2main.lib(SDL_windows_main.obj) : error LNK2019: 无法解析的外部符号 __imp__fprintf,函数 _ShowError 中引用了该符号1>SDL2main.lib(SDL_windows_main.obj) : error LNK2019: 无法解析的外部符号 __imp____iob_func,函数 _ShowError 中引用了该符号#pragma comment(lib, "legacy_stdio_defini
2021-10-28 18:34:51
1762
原创 【photoshop Action Manager】设置矩形选框工具样式固定比例
/* 设置矩形选框工具样式固定比例 */var r = new ActionReference(); r.putProperty(stringIDToTypeID("property"), stringIDToTypeID("tool")); r.putEnumerated(stringIDToTypeID("application"), stringIDToTypeID("ordinal"), stringIDToTypeID("targetEnum")); ...
2021-10-15 12:51:31
507
原创 【photoshop Action Manager】选中多个图层(二)
根据ID选中多个图层 (如果删除了图层导致某些ID不存在呢)例如:选中ID为2,5,6图层var ids=new Array;ids.push(2);ids.push(5);ids.push(6);multiSelectByIDs(ids);function doesIdExists( id ){// function to check if the id exists var res = true; var ref = new ActionReference();
2021-08-17 11:37:56
447
1
原创 【photoshop Action Manager】选中多个图层(一)
如何选中多个图层例如:选中图层2和图层5select_layer("图层 2");select_layer("图层 5", true);function select_layer(nm, add) { try { var r = new ActionReference(); r.putName(stringIDToTypeID("layer"), nm); var d = new ActionDescripto
2021-08-17 11:32:17
351
1
原创 【photoshop Action Manager】获取选择的单个或多个图层序号
获取选择的单个或多个图层序号注意一个常识,有背景图层从0开始,没有背景图层从1开始alert (getSelectedLayersIdx());function getSelectedLayersIdx(){ var selectedLayers = new Array; var ref = new ActionReference(); ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID(
2021-08-17 11:26:41
540
原创 【photoshop Action Manager】对象反射属性方法
如何获取对象的属性和方法,可以通过反射接口比如:获取layer对象的属性和方法:function reflectProps(obj) { var props = obj.reflect.properties; for (var i = 0, len = props.length; i < len; i++) { try { $.writeln(props[i].name + ' = ' + obj[props[i].name]);
2021-08-17 11:19:19
297
原创 关于IAccessible接口(MSAA)获取失败问题
调试的时候可以用微软提供的inspect.exe 工具一、拒绝访问1.权限问题,要获取的窗口是管理员权限,那么程序也要是管理员二、库没有注册或者获取为空查看注册表 “计算机\HKEY_CLASSES_ROOT\WOW6432Node\Interface\{618736E0-3C3D-11CF-810C-00AA00389B71} ”数据不对。这是因为用户在安装 KB3200970、KB4462917、KB4457127 或 KB4457131 等 Windows 安全更新后,与 IA..
2021-07-09 17:43:16
1627
原创 【photoshop Action Manager】notifiers通知用法
一、概念介绍二、用法介绍1.准备文件夹EventListener,只运行开启监听脚本即可开启监听.jsx,作用是关闭文档运行1.bat批处理 if(!app.notifiersEnabled) app.notifiersEnabled = true;var hasEvent = false;for(var e = 0;e<app.notifiers.length;e++){if(app.notifiers[e].event == "close") ...
2021-06-04 15:45:00
342
原创 【photoshop Action Manager】动作管理器- 设置属性(笔刷模式、不透明度、流量等)
// Version: 2016.9.15// Set the options for the paint brush tool// blend modes, opacity, flow and othersif (documents.length == 0) { var d = documents.add();} else { var d = activeDocument;}// two layers so behind and clear are available.
2021-05-24 15:22:52
497
1
原创 【Adobe Premiere Pro脚本开发】控件面板是否可见
app.isWindowOpen("Project");/*可选参数: windowTypes = [ "StoryPanel", "AudioClipMixer", "MiniAudoiMixer", "AudioMixer", "Captions", "Capture", ...
2021-05-20 14:44:35
530
原创 【Adobe Premiere Pro脚本开发】基于文档模型对象的获取属性和方法
通过反射获取属性和方法function reflectProps(obj) { var props = obj.reflect.properties; for (var i = 0, len = props.length; i < len; i++) { try { $.writeln(props[i].name + ' = ' + obj[props[i].name]); WriteData(props[i].n
2021-05-19 17:12:03
2268
原创 【Adobe Premiere Pro脚本开发】如何从PPro项目中提取图像尺寸
main();/* https://community.adobe.com/t5/premiere-pro/how-to-extract-image-dimensions-from-a-ppro-projectitem/td-p/12000680 如何从PPro项目中提取图像尺寸 */ function main(){var kPProPrivateProjectMetadataURI = "http://ns.adobe.com/premierePrivateProjec.
2021-05-19 17:05:34
496
原创 【Photoshop API 】六、 实际案例:在.atn文件中播放所有动作
Sample 7.1 - Play ALL actions in .atn file.一、定义样本7.1-在.atn文件中播放所有动作export token=<YOUR_TOKEN>export api_key =<YOUR_API_KEY>curl -H "Authorization: Bearer $token" -H "x-api-key: $api_key" https://image.adobe.io/pie/psdService/photoshopAc
2021-05-13 14:23:16
559
原创 【Photoshop API 】五、 实际案例:PSD文件转换生成新的图像格式
Sample 4.1: A single file input一、定义示例4.1:单个文件输入此示例API调用将从Example.psd输入中请求两个不同的输出表示形式:Example.jpeg是一个新的JPEG格式,宽度为512像素 Example.png是新的全尺寸PNG格式curl -X POST \ https://image.adobe.io/pie/psdService/renditionCreate \ -H 'Authorization: Bearer &l..
2021-05-13 11:19:05
1129
1
原创 c++ curl实现post请求图片用法 - removebg移除背景
removebg 移除背景API1.Image URL用法注意file打开方式必须二进制写入 "wb"#include <stdio.h>#include <stdlib.h>#include <string.h>#include <curl/curl.h>#pragma warning(disable:4996)using namespace std;#define POSTURL "https://api.remov.
2021-05-07 16:50:31
795
原创 c++ curl实现post请求 - 随机获取网易云音乐热门歌曲接口
随机获取网易云音乐热门歌曲接口接口地址:https://api.66mz8.com/api/rand.music.163.php返回格式:get/post请求方式:json/mp3请求示例:https://api.66mz8.com/api/rand.music.163.php?format=json请求参数说明: 名称 必填 类型 说明 format 否 string 选择输出格式 [json|mp3] 返回参数...
2021-05-07 10:54:31
761
原创 【Photoshop API 】四、c++实现第一个API通信案例
向Photoshop API发出了第一个请求curl用法:curl --request GET \ --url https://image.adobe.io/pie/psdService/hello \ --header "Authorization: Bearer <YOUR_ACCESS_TOKEN>" \ --header "x-api-key: <YOUR_CLIENT_ID>"注意:您的令牌将每24小时过期,并且需要在过期后进行刷新。有关以编程方式
2021-04-28 10:52:05
769
1
原创 【Photoshop API 】三、C++获取 access_token
获取办法:https://www.adobe.io/authentication/auth-methods.html#!AdobeDocs/adobeio-auth/master/JWT/JWT.md交换JWT以检索访问令牌要启动API会话,请使用JWT通过向Adobe Identity Management Service(IMS)发出POST请求来从Adobe获取访问令牌。发送POST请求至:https://ims-na1.adobelogin.com/ims/exchange/jwt.
2021-04-27 11:57:13
643
2
原创 【Photoshop API 】二、curl工具获取 access_token
YOUR_SERVICE TOKEN 就是access_token获取办法:https://www.adobe.io/authentication/auth-methods.html#!AdobeDocs/adobeio-auth/master/AuthenticationOverview/ServiceAccountIntegration.md现在提供我的获取办法1.打开Service Account JWT - Generate JWT页面,输入private Key秘钥,然后生成得到Sa.
2021-04-26 18:31:24
712
原创 【Photoshop API 】一、公开测试版权限申请用法
感谢您加入我们的API预发布计划!按照1. 请访问https://console.adobe.io/并遵循以下步骤。以下步骤创建您的凭据。2. 一旦登录,点击顶部导航栏中的“Projects”标签。3.选择“Create new project”4. 选择“Add API”5. 选择“Adobe Photoshop APIs trial" and click "Next”6. 点击 "Generate key pair"...
2021-04-26 17:14:54
1918
2
原创 【Photoshop JSX脚本】设置字体不同颜色样式
var c1 = new SolidColor();with (c1.rgb) { red = 200; green = 100; blue = 150; } var c2 = new SolidColor();with (c2.rgb) { red = 20; green = 100; blue = 200; } // activeLayer in demo example must be textlayeractiveDocument.activeLayer.textI...
2021-04-25 17:21:50
1347
原创 【Photoshop JSX脚本】设置为30天(每天从中午12点开始)的试用脚本的基本示例
main();function main(){ if(!$.os.match(/windows/gi)){ alert("Sorry this is a Windows only script"); return; }var maxTrialDays = 30;var VBFile = File(Folder.temp + "/v.vbs");var daySince1970 = File(Folder.temp + "/v.dat");if(d.
2021-04-25 17:16:33
638
原创 【Photoshop JSX脚本】交换两个图层位置
选中两个图层,交换图层位置// swapPosition-mirror.jsx - Adobe Photoshop Script // Version: 0.2.1 // Author: Anton Lyubushkin (nvkz.nemo@gmail.com) // Website: http://lyubushkin.pro/ // ==========================================================================
2021-04-25 17:09:19
1237
原创 【Photoshop JSX脚本】获得选择的图层序号
alert (getSelectedLayersIdx());function getSelectedLayersIdx(){ var selectedLayers = new Array; var ref = new ActionReference(); ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") ); var.
2021-04-25 17:06:01
1300
1
原创 【Photoshop JSX脚本】选中多个图层
选中多个图层方法一:select_layer("图层 2");select_layer("图层 5", true);function select_layer(nm, add) { try { var r = new ActionReference(); r.putName(stringIDToTypeID("layer"), nm); var d = new ActionDescriptor();
2021-04-25 17:00:17
1732
1
原创 【photoshop CEP插件】 OCR文字识别
一个photoshop CEP插件OCR文字识别APP_ID = 17594920API_KEY = puMFv72xqCYV2jdcSlXgtFvmSECRET_KEY = v5XHtqKXEm0p6ehPZrXIXrftDvocyv1m/*********************************************/百度OCR 密钥由Greless@qq.com 提供, 用户可自行前往https://ai.baidu.com/docs#/Auth/top 申请。通用文字识别..
2021-04-23 17:15:17
4967
14
原创 【Adobe Premiere Pro脚本开发】资料链接
谷歌关键字搜索:adobe prime script guideCEP插件:https://github.com/Adobe-CEP/Samples/tree/master/PProPanelPR脚本:https://premiere-scripting-guide.readthedocs.io/application/application.htmlhttps://readthedocs.org/projects/premiere-scripting-guide/downloads/pdf/lates
2021-04-20 14:22:27
3396
原创 C++ POST请求调用百度AI OCR
阅读本文前先看这篇文章:c++调用百度AI OCR SDK一.鉴权认证机制1.百度通用参考:鉴权认证机制简介本文档主要针对HTTP API调用者,百度AIP开放平台使用OAuth2.0授权调用开放API,调用API时必须在URL中带上access_token参数,获取Access Token的流程如下:获取Access Token请求URL数据格式向授权服务地址https://aip.baidubce.com/oauth/2.0/token发送请求(推荐使用POST),并在URL
2021-04-16 10:29:58
1751
3
原创 cef 实现js 调用C++( cef EasyCKL)
// WindowsProject1.cpp : 定义应用程序的入口点。//#include "framework.h"#include "WindowsProject1.h"#include "Resource.h"#include "EasyCKL.h"#pragma comment(lib, "easyckl.lib")#include <iostream>#include <io.h>#include <atlimage.h>/...
2021-04-14 11:26:33
324
原创 cef C++ 与js交互
JS 绑定官方介绍:https://bitbucket.org/chromiumembedded/cef/wiki/JavaScriptIntegration1.cefSampleCEF中C++与JS交互,cef3 win32客户端本项目配套博客网址:https://blog.youkuaiyun.com/leapmotion/article/details/80853508?utm_medium=distribute.pc_relevant_download.none-task-blog-baidujs-1.
2021-04-14 11:09:55
661
原创 c++windows 阿里云OSS编译(alibabacloud-oss-cpp-sdk 1.8.2)
1.下载SDKC++ alibabacloud-oss-cpp-sdk:https://www.alibabacloud.com/help/zh/doc-detail/103185.htm?spm=a2c63.l28256.b99.858.7d315cc5mAwk3Ohttps://github.com/aliyun/aliyun-oss-cpp-sdk?spm=a2c63.p38356.879954.4.74422118kBazsn2.CMAKE配置3.编译选中install.
2021-04-13 18:55:22
999
原创 opencv 边缘检测
// findControl.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。//#include "pch.h"#include <iostream>#include <opencv2/opencv.hpp>//#pragma comment(lib,"../lib/opencv_calib3d2413d.lib")//#pragma comment(lib,"../lib/opencv_contrib2413d.lib")#prag...
2021-04-13 18:47:01
263
原创 opencv 模板匹配
https://www.cnblogs.com/skyfsm/p/6884253.html// opencv_match.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。//#include "pch.h"#include <iostream>#include "../../install/include/opencv2/core/core.hpp"#include "../../install/include/opencv2/imgproc/imgpr
2021-04-13 18:30:51
153
原创 c++windows opencv编译(opencv-2.4.13.6)
1.下载opencv2.配置3.3.编译选中项目install生成在opencv-2.4.13.6\build\install生成了我们需要的lib,include,dll 文件
2021-04-13 17:39:51
299
通过注册表遍历查找USB3.0驱动
2017-07-28
一个字体,大小,颜色可定义的自绘静态框控件-XColorStatic 类
2017-07-14
INI文件实现多语言版本
2017-06-12
ConvertImage
2017-06-07
winIO3.0源码案例
2017-05-31
psOCR1.0.zip
2021-04-23
postDemo.zip
2021-04-16
ActivePerl-5.28.msi+openssl-1.1.1k.zip
2021-04-13
ActivePerl-5.8.8.822-MSWin32-x86-280952.msi+openssl-1.0.2.zip
2021-04-13
BaiduAI_OCR.zip
2021-04-12
jsoncpp-master.zip
2021-04-12
photoshop javascript 脚本.zip
2021-04-09
PS Connection Demo.zip
2021-04-08
jsx读取excel案例.zip
2020-11-04
CefDemo_vs2017_cef_binary_85.3.12.zip
2020-10-12
cef_binary_85.3.12
2020-10-10
event_listener.jsx
2020-04-28
photoshop cs6二次开发文档
2018-12-06
CorelDRAW Graphics Suite X6二次开发文档
2018-12-06
Install Shield 2015 Limited Edition
2018-05-15
实现mscomm32.ocx自动注册的程序(ActiveX控件注册/注销/检测 )
2018-05-12
C++ zlib库能否实现360压缩那样解压的时候选择压缩包语言?
2021-05-28
void *stream 怎么转换成ifstream
2021-05-07
curl get命令行下请求正常,c++请求失败
2021-04-27
如何获取PPT当前选中的文本框
2018-11-27
c++ 不打开Word的情况下如何操作word
2018-11-27
c++ 操作ppt, 改变字体的时候设置只对英文有效
2018-11-23
采用“在共享 DLL 中使用 MFC”是不是这里所有dll都要提取出来
2017-07-20
自绘按钮打开一个程序时等待期间按钮属于什么状态
2017-07-18
TInitFile类是什么 , 谁有这个文件
2017-06-13
怎么抓取系统驱动版本
2017-06-05
VC C++怎么判定USB 端口是usb2.0,3.0,3.1
2017-04-20
c++如何获取内存条数和型号
2017-04-18
c++从文件中查找特定的字符串
2017-03-28
C++复制文件到C:\windows\system32\drivers
2017-03-22
c++ 执行bat脚本(bat里面调用系统命令pnputil.exe)失败
2017-03-16
C++如何检测系统驱动版本,过了WHQL的
2017-03-07
请问C++怎么查看系统补丁,比如KB2553347
2017-03-07
自绘进度条采用线程循环失败用自带的CprogressCtrl进度条就能循环,怎么回事
2017-03-02
MFC CreateProcess问题
2017-02-28
编程如何检测软件或应用有更新
2015-02-06
TA创建的收藏夹 TA关注的收藏夹
TA关注的人