- 博客(28)
- 资源 (21)
- 问答 (1)
- 收藏
- 关注

原创 邮箱验证 验证邮箱真实性
验证邮箱真实性 平台盘点:http://email.qhyt1688.com/ 国产 免费 精准 快速 https://verify-email.org/ 收费 收费 速度一般 不能批量 验证 https://www.verifyemailaddress.org/ 收费 速度一般 不能批量 验证 http://www.emailcamel.com/ 收费速度慢 不能批量 ...
2018-08-24 23:02:27
6897
3

原创 C# ffmpeg .net 封装
MediaTooKIT为处理媒体数据提供了一个简单的接口,使得任务如转换、切片和编辑音频和视频完全不费吹灰之力。在HED下,MediaTooKIT是FFMPEG的.NET包装器;一个免费的(LGPLV2.1)多媒体框架,包含多个音频和视频编解码器,支持多种媒体格式的多兴、解散和转码任务。FeaturesResolving metadataGenerating thumbnails from vid...
2018-07-04 15:51:00
14334

原创 windows service 删除 和 安装的 命令
cd C:\Windows\Microsoft.NET\Framework\v4.0.30319 InstallUtil.exe d:\\Release\windowsServiceTest.exe sc delete TestService1
2018-06-27 13:41:19
3262

转载 猫眼睛报警触发
Projects and applications using AForge.NET FrameworkCats Eyes Alarm Trigger by Spangenberger Sebastien. The Cats Eyes Alarms Trigger tool is a multi-camera motion detection tool.HatchView from Digital...
2018-06-07 13:36:17
287

转载 C# 读写视频文件
很多时候我们要读写视频,C#读视频(对视频解码)网上的例子很多,然而写视频(对视频编码)的例子却很少,也很少能搜索到有用的信息。下面是使用Aforge.Net写视频的简单方案。Aforge.Net 是一个 C# 版的图像和计算机视觉库,网站 http://www.aforgenet.com/ 。下载安装。Aforge.Net 有一个子项目 AForge.Video.FFMPEG 对 ffmpeg ...
2018-06-07 11:35:38
5432
转载 How To Bind C++ Code with Dotnet Core
How To Bind C++ Code with Dotnet CoreWhile you are working with compiled code, you often find yourself in the situation that every bit of performance count (just think about GPU intensive operations...
2019-08-17 22:49:19
383
原创 Previous IPDB not found, fall back to full compilation
visual studio 2015,visual studio 2017,visual studio 2019,在默认配置下,使用Release 模式下 编译 vc++ 程序 都会遇到一下问题:Previous IPDB not found, fall back to full compilation.All 6 functions were compiled because no us...
2019-08-01 16:09:19
11630
3
原创 ffmpeg 解码音频 测试结果
ape: AV_CODEC_ID_APE 不支持aiff,au : AV_CODEC_ID_PCM_S16BE =AV_CODEC_ID_FIRST_AUDIOamr : AV_CODEC_ID_AMR_NB 杂音 m4a, mka,aac : AV_CODEC_ID_AACac3: AV_CODEC_ID_AC3 杂音mp2: ...
2018-10-30 16:23:49
1518
原创 ffmpeg 提取pcm 保存为wav
#include "stdafx.h" #ifdef __cplusplus extern "C" { #endif #include "libavcodec/avcodec.h" #include "libavformat/avformat.h" #include "libavdevice/avdevice.h" #include "libavfilter/avf.
2018-10-24 14:07:16
1316
原创 python json 和对象互转
#json 和对象互转import jsonclass Student: def __init__(self): self.Name="" self.Age=15 self.Sex="男" self.Email="abc@163.com" self.Address="abdcessssssssssssssssss"stude...
2018-10-24 11:57:41
3050
原创 C# 简单分页 演示
static void Main(string[] args) { int pageCount; for (int i = 1; i < 5; i++) { List<int> lists = Program.GetHotelCommentList(i, ou...
2018-10-19 17:44:30
810
原创 python 常用语法已经方法
#python test# coding:utf-8import jsonfrom MyClass001 import MyClass001import bisectimport sysfrom xml.dom.minidom import parseimport xml.dom.minidomimport xml.saximport timeimport random#...
2018-10-17 17:16:22
173
原创 C# 采集当前页面数据并保存
private void button1_Click(object sender, EventArgs e) { try { WebClient MyWebClient = new WebClient(); MyWebClient.Credentials = Cred...
2018-10-12 18:06:21
1475
原创 ffmpeg 静态库文件 使用方法,以及ffmpeg 静态库资源文件地址
vs2008编译 ffmpeg Static dll 完整库文件 下载本人亲测,在vs2008 环境下 vc++ 完美演绎 https://download.youkuaiyun.com/download/tytok/10563428#include <libavcodec/avcodec.h>#include <libavformat/avformat.h>#in...
2018-07-25 15:50:20
2825
1
转载 C# 无标题窗体 改变大小
//FormBorderStyle.None时,支持改变窗体大小#region 支持改变窗体大小private const int Guying_HTLEFT = 10;private const int Guying_HTRIGHT = 11;private const int Guying_HTTOP = 12;private const int Guying_HTTOPLEFT = 13;p...
2018-07-14 21:59:09
843
转载 C# winform 控件自适应窗体大小
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Forms;namespace videoBox.lib{ public class AutoSizeFormClass { public struct con...
2018-07-12 17:36:55
8931
2
原创 C# 重新启动自己
if (Common.GetPidByProcessName(p.ProcessName) != 0) { Common.KillProcess("mesages"); } Application.ExitThread(); System.Diagnostics.Process....
2018-07-12 15:13:10
867
转载 C# 移动无标题栏窗体的几种方法
第一种,手工移动。该方法根据鼠标位置实现窗体的移动。网上有很多相关的例子,这里不再多讲。第二种,调用系统API原理:是当鼠标左键按下时,让系统认为是在标题栏按下的。这里我们用到了winapi里的WM_LBUTTONDOWN(客户区鼠标左键按下,值:0x0201)和WM_NCLBUTTONDOWN(非客户区鼠标左键按下,值:0x00A1)及HTCAPTION(鼠标位置在标题栏,值:2,为什么是2,请...
2018-07-04 09:31:44
494
原创 C# 跨线程更新用户控件UI
C# 跨线程更新用户控件UI下面代码 主要实现 在类中的跨线程触发用户控件的按钮事件1,类中定义委托 public delegate void ClickThisButton(int b); public ClickThisButton clickbutton; public int comorder ;// 定义对应用户控件的序号 线程中调用:clickbutton(comorder);...
2018-07-03 17:47:09
1168
转载 VC/MFC如何设置对话框背景颜色 控件背景色
转自:https://www.cnblogs.com/staring-hxs/archive/2013/01/09/2853126.htmlHBRUSH CXXXDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor){ HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor); // TODO:...
2018-07-02 09:11:19
2034
原创 fmc 文件过滤设置
void CApplication1001Dlg::OnBnClickedButton1(){ static char BASED_CODE szFilter[] = "视频文件|*.mp4;*.kmv;*.mov;*.mp3;*.mkv;*.avi;*.mpeg;*.rm;*.wmv;*.rmvb;*.3gp;*.ts |视频文件 (*.mp4)|*.mp4;|视频文件(*.mkv)|*.mk...
2018-06-30 10:07:17
357
原创 C# form1 用户控件 from2 间传值
1,mainfrom code:form1textbox01 from1user=new form1textbox01();from1user.form1textbox01.Text="34343";from1user.form1textbox02.Text="34334343";from1user.form1textbox03.Text="34343";from1user.form1textb...
2018-06-28 16:07:01
2183
原创 C# form 间传值
public static controlname="";private void form1textbox01_Click(object sender, EventArgs e) { controlname = ((TextBox)sender).Name; form2 f= new form2 (controlname); ...
2018-06-28 15:12:37
1101
原创 C# 集合 序列化 反序列化
using System;using System.Collections.Generic;using System.Linq;using System.Text;using Newtonsoft.Json.Converters;using System.Collections;using Newtonsoft.Json;using System.IO;namespace ProductReg{ ...
2018-06-20 18:08:37
1120
原创 C# dataGridView 控件 使用大全
下载链接 https://download.youkuaiyun.com/download/tytok/10460637
2018-06-05 18:35:32
1061
原创 VC++ 采用 ffmpeg 提取视频的音频 转码 wav 播放全程有很大杂音 如何解决,源码已附上
#define __STDC_CONSTANT_MACROS#ifdef _WIN32//Windowsextern "C"{#include "libavcodec/avcodec.h"#include "libavformat/avformat.h"#include "libswscale/swscale.h"#include "libavutil/pixfmt.h"#include <..
2018-05-10 10:29:25
1227
1
原创 VC++ 采用 ffmpeg 提取视频 音频 转码 wav文件播放 有杂音怎么 解决。
#define __STDC_CONSTANT_MACROS#ifdef _WIN32//Windowsextern "C"{#include "libavcodec/avcodec.h"#include "libavformat/avformat.h"#include "libswscale/swscale.h"#include "libavutil/pixfmt.h"#include <..
2018-05-10 09:50:51
1151
1
SharpDevelop_5.1.0.5216_Source - 20200528.zip
2020-05-28
ffmpeg 静态库文件大全(vs2008 本人亲测)
2018-07-25
C# form1 ,form2 互相传值
2018-06-20
C# DataGridView 用法大全
2018-06-05
最强的信息发布工具
2015-03-26
信息发布工具
2015-03-15
多线程、高性能采集器爬虫.net版源码,可采ajax页面
2015-03-02
TA创建的收藏夹 TA关注的收藏夹
TA关注的人