
视频处理
str999_cn
这个作者很懒,什么都没留下…
展开
-
jrtplib + vs2010 编译,安装配置
最近项目需要用RTP协议,从网上找到jrtlib库,但是编译方法都写得有点模糊,不还好使,这篇文章写得非常好,转载过来。【流媒體】jrtplib—VS2010下RTP开源协议库JRTPLIB3.9.1编译SkySeraph Apr 7th 2012Email:zgzhaobo@gmail.com QQ:452728574一、JRTPLI转载 2014-05-26 02:05:28 · 857 阅读 · 0 评论 -
Qt5.3里使用X264库将y4m文件进行压缩
前段时间在Visual Studio里做过一次类似的Demo原创 2014-06-07 20:52:52 · 1469 阅读 · 0 评论 -
使用jrtplib(RTP)传输H.264视频文件(1)
摘自:http://blog.youkuaiyun.com/liushu1231/article/details/9203541继续上一篇博客,在使用x264对视频进行编码之后,我们需要将编码好的视频进行网络传输,发送给其他的客户端,之后再进行解码。那么,这篇博客我将介绍下如何使用jrtplib这个库对编码后的文件传输。RTP协议基础知识:首先,我们依然要先了解一些关于协议的基础知识,不然对于其中转载 2014-05-27 16:30:17 · 858 阅读 · 0 评论 -
使用jrtplib传输H.264视频文件(3)
转自:http://blog.youkuaiyun.com/liushu1231/article/details/9203643本文所有内容均为原创,转载请注明出处!介绍如何发送h264,下面我们介绍下如何接收h264文件。其中主要关注的就是被拆分的数据包的重组,下面的代码中有详尽的注释。[cpp] view plaincopyclass CRT转载 2014-05-27 16:32:35 · 634 阅读 · 0 评论 -
ffmpeg 解码h264数据
本文内容均为原创,转载请注明出处。使用ffmpeg解码h264数据其实相对使用x264进行视频编码是简单了许多的,因为ffmpeg提供了一个decoding_encoding.c的文件,这个文件里面有简单的使用ffmpeg进行视频、音频编解码的例子,不过可能有的人也会找不到这个示例,我就讲我改造过的这个示例放在这里,同时加一些解释。其中需要注意的的一点我需要在此说明,就是ffmpeg在转载 2014-05-27 16:35:21 · 1043 阅读 · 0 评论 -
QT&OpenCV
摘自:http://blog.youkuaiyun.com/yvhvv?viewmode=contentsQt Creator2.0.1 + OpenCV-2.3.1-win-superpack + win7 64最近在做视频聊天室,两天了才把环境配置好,特记下此过程以备忘;我的需求很简单,只要我能捕捉下摄像头的一帧,并转化成qt的图片格式就行了,我决定选择使用OpenCV库,转载 2014-05-28 13:29:34 · 748 阅读 · 0 评论 -
X264编码h264
转自:http://blog.youkuaiyun.com/liushu1231/article/details/9203239本文所有内容均为原创,转载请注明出处!前言前段时间一直在搞视频编解码与传输的东西,现在基本上整个系统能够实现服务器实时编码打包传输给客户端,客户端实时解码并显示的功能,故将上一阶段的工作整理记录一下,将我使用x264进行h.264编码的过程,使用jrtpl转载 2014-05-26 04:21:07 · 1009 阅读 · 0 评论 -
opencv摄像头视频+帧保存为图片
01// ConsoleApplication2.cpp : Defines the entry point for the console application.02//03 04#include "stdafx.h"转载 2014-05-26 00:32:17 · 1838 阅读 · 0 评论 -
windows下编译配置x264
转自:http://blog.youkuaiyun.com/liushu1231/article/details/8936894最近项目需要开发网络视频应用,因为视频要编码,选择使用h.264进行编码,从网上找到x264这个库使用,但是不幸的是这个库是linux下的,但是我们的应用需要部署在windows系统上,故我只能自己编译成动态链接库来使用了,从网上找了好多方法,但是发现都不太好用,到我这老是出转载 2014-05-26 02:06:55 · 755 阅读 · 0 评论 -
OpenCV“应用程序无法正常启动(0xc00007b) ”错误解决方案
环境变量的设置,原来只设置了x64原创 2014-06-06 23:00:49 · 4022 阅读 · 0 评论 -
OpenCV在Windows7下的编译
下载地址:http://opencv.org/。到目前(2014年5月30日)最新的版本是Version 2.4.9opencv-2.4.9.exe原创 2014-05-30 12:20:06 · 2080 阅读 · 0 评论 -
X264的编译(QT版和VS)
摘自:http://blog.youkuaiyun.com/dayenglish/article/details/22725823首先到X264官网下载源代码,网址是:http://www.videolan.org/developers/x264.html。因为X264的编译过程需要Linux环境,所以需要在windows下面装一个模拟,比较常用的是mingW+msys(个人感觉cygwin也可以,只转载 2014-06-07 20:26:30 · 830 阅读 · 0 评论 -
jrtplib3.9.1 example1
/* Here's a small IPv4 example: it asks for a portbase and a destination and starts sending packets to that destination.*/#include "rtpsession.h"#include "rtpudpv4transmitter.h"#include "rtpipv4a翻译 2014-06-02 19:29:37 · 1094 阅读 · 0 评论 -
jrtplib3.9.1 example4
/* This IPv4 example uses the background thread itself to process all packets. You can use example one to send data to the session that's created in this example. 本IPv*/#include "rtpsession.h"翻译 2014-06-03 00:10:36 · 805 阅读 · 0 评论 -
jrtplib3.9.1 example5
/* This is a modified version of example1.cpp to illustrate the use of a memory manager.*/#include "rtpsession.h"#include "rtppacket.h"#include "rtpudpv4transmitter.h"#include "rtpipv4address.h"翻译 2014-06-03 00:20:36 · 900 阅读 · 0 评论 -
jrtplib3.9.1 example3
/* This IPv4 example listens for incoming packets and automatically adds destinations for new sources.*/#include "rtpsession.h"#include "rtppacket.h"#include "rtpudpv4transmitter.h"#include "rtpip翻译 2014-06-02 23:19:28 · 945 阅读 · 0 评论 -
JRTPLIB 3.9.1 类层次图
RTCP复合包翻译 2014-06-05 23:45:17 · 669 阅读 · 0 评论 -
jrtplib3.9.1 example2
#include "rtpsession.h"#include "rtpsessionparams.h"#include "rtpudpv4transmitter.h"#include "rtpipv4address.h"#include "rtptimeutilities.h"#include "rtppacket.h"#include #include using namespace jrtp原创 2014-06-02 22:58:20 · 1003 阅读 · 0 评论 -
JRTPLIB 3.9.1 类大全
Here are the classes, structs, unions and interfaces with brief descriptions:这些是类、结构体、联合体和接口,带有简单的翻译 2014-06-05 22:38:50 · 839 阅读 · 0 评论 -
JRTPLIB 文档中文翻译
/**\mainpage JRTPLIB * * \author Jori Liesenborgs * \author Developed at the The Expertise Centre for Digital Media (EDM), a research * institute of the Hasselt University * * \section ack Ac翻译 2014-06-03 13:10:23 · 1469 阅读 · 0 评论 -
使用jrtplib(RTP)传输H.264视频文件(2)
本文所有内容均为原创,转载请注明出处!上一篇我们介绍了RTP协议的一些基本知识,下面我们介绍如何使用jrtplib这个库传输H264编码。[cpp] view plaincopyJRTP传输: 好了,下面是我写的使用JRTP进行发送H264数据包的例子,具体解释可以看注释。发送端也可以接收接收端发送过来的RTCP数据包。 #d转载 2014-05-27 16:31:34 · 765 阅读 · 0 评论