随笔分类 - 音视频编解码
摘要:原文网址:http://blog.csdn.net/michaelcao1980/article/details/53008418, http://lwn.net/Articles/204545/ 文章中提到的 v4l2 api specification: https://www.linuxtv.
阅读全文
摘要:如题。 效果非常好,录屏时电脑的声音也一同录了。
阅读全文
摘要:仅用opencv的方式: // main2.cpp #include "opencv2/opencv.hpp" #include <opencv2/videoio.hpp> #include <iostream> using namespace cv; using namespace std; in
阅读全文
摘要:https://github.com/RoyGuanyu/build-scripts-of-ffmpeg-x264-for-android-ndk/blob/master/ffmpeg/build_android_armeabi_v7a.sh https://github.com/shishuo36
阅读全文
摘要:https://tools.ietf.org/html/rfc4749 git://git.linphone.org/linphone-android.git http://stackoverflow.com/questions/31099875/how-to-integrate-g-729-cod
阅读全文
摘要:YUV格式有两大类:planar和packed。对于planar的YUV格式,先连续存储所有像素点的Y,紧接着存储所有像素点的U,随后是所有像素点的V。对于packed的YUV格式,每个像素点的Y,U,V是连续交*存储的。 YUV,分为三个分量,“Y”表示明亮度(Luminance或Luma),也就
阅读全文
摘要:http://www.html5rocks.com/en/tutorials/webrtc/basics/
阅读全文
摘要:https://en.wikipedia.org/wiki/X264x264 is able to use Periodic Intra Refresh instead of keyframes, which enables each frame to be capped to the same s...
阅读全文
摘要:http://stackoverflow.com/questions/32682952/audiotrack-audiotack-not-playing-fully-recorded-audio
阅读全文
摘要:项目下载地址:http://git.oschina.net/zencodex/CSipSimple https://github.com/zencodex/csip
阅读全文
摘要:http://stackoverflow.com/questions/4145575/transport-stream-mpeg-file-fromatWhat you are probably wanting to do is convert from MPEG-TS (Transport Str...
阅读全文
摘要:stride可以翻译为:跨距stride指在内存中每行像素所占的空间。如下图所示,为了实现内存对齐(或者其它的什么原因),每行像素在内存中所占的空间并不是图像的宽度。plane一般是以luma plane、chroma plane的形式出现,其实就是luma层和chroma层,就像RGB,要用三个p...
阅读全文
摘要:http://www.cnblogs.com/whyandinside/archive/2010/12/08/1900492.html http://www.gzsec.com/oldversion/filesys/news_view.asp?newsid=84 在现实Internet网络环境中,大
阅读全文
摘要:rfc1889 rfc2326 rfc3261 rfc3550 rfc3856 rfc6120.SIP SDP RTSP RTP RTCP,就像他们出现的顺序一样,他们在实际应用中的启用也是这个顺序: SIP(一般基于tcp)用于设备或用户(准确的说是 Internet endpoints)地址管理...
阅读全文
摘要:http://blog.csdn.net/leixiaohua1020/article/details/25430449本文介绍一个最简单的基于FFMPEG的音频编码器。该编码器实现了PCM音频采样数据编码为AAC的压缩编码数据。编码器代码十分简单,但是每一行代码都很重要。通过看本编码器的源代码,可...
阅读全文
摘要:1. 音频简介 经常见到这样的描述: 44100HZ 16bit stereo 或者 22050HZ 8bit mono 等等.44100HZ 16bit stereo: 每秒钟有 44100 次采样, 采样数据用 16 位(2字节)记录, 双声道(立体声); 22050HZ 8bit mono: ...
阅读全文
摘要:在 libavutil/common.h 下添加如下,即可解决#ifdef __cplusplus#define __STDC_CONSTANT_MACROS#ifdef _STDINT_H#undef _STDINT_H#endifextern "C" {#include }#endif#ifnd...
阅读全文
浙公网安备 33010602011771号