自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 收藏
  • 关注

原创 记录android离屏渲染的一些资料

1、http://www.jianshu.com/p/8793f0fbd1e62、http://blog.csdn.net/junzia/article/details/53861519

2017-09-18 10:40:56 1837

原创 几个移动端直播SDK开源地址

ios直播sdk:https://github.com/runner365/LiveVideoCoreSDKios带滤镜的直播sdk:https://github.com/runner365/GPUImageRtmpPushandroid直播sdk:https://github.com/runner365/android_rtmppush_s

2017-09-15 14:50:16 8068 2

原创 AVAssetWriter保存MP4(PBJVision)

#import "PBJMediaWriter.h"#import "PBJVisionUtilities.h"#import "PBJVision.h"#import #import #define LOG_WRITER 0#if !defined(NDEBUG) && LOG_WRITER# define DLog(fmt, ...) NSLog((@"writer: "

2017-09-15 11:44:11 3297

原创 obs之libx264编码

obs中使用libx264编码的例子,包含了动态设置码率。#include "Main.h"#include #include extern "C"{#include "../x264/x264.h"}void get_x264_log(void *param, int i_level, const char *psz, va_list argptr){ S

2017-09-01 15:09:24 1596

原创 obs之lame编码

obs之lame编码。#include "Main.h"#include "../lame/include/lame.h"const int audioBlockSize = 4; //output is 2 16bit channelsstruct AACDataPacket{ List Packet; inline void FreeData() {Pa

2017-09-01 15:01:50 461

原创 obs之libfaac编码

obs源码之libaac编码。#include "Main.h"#include "../libfaac/include/faac.h"//AAC is pretty good, I changed my mindclass AACEncoder : public AudioEncoder{ UINT curBitRate; bool bFirstPacket

2017-09-01 14:58:33 514

原创 ios libfdk-aac encode

使用libfdk-aac编码。#import "FDKAACEncoder.h"#include "aacenc_lib.h"#define PROFILE_AAC_LC 2#define PROFILE_AAC_HE 5#define PROFILE_AAC_HE_v2 29#define PROFILE_AAC_LD 23#define PROFILE_AAC_ELD 39

2017-09-01 14:46:18 1043

原创 ios libx264 h264 encode

#import "X264Encode.h"#include "x264.h"#define KEY_FRAME_INTERVAL 30typedef struct{ x264_param_t * param; x264_t *handle; x264_picture_t * picture; x264_nal_t *nal;} X264Encode

2017-09-01 14:43:49 372

原创 ios ffmpeg audio decode

ffmepg解码音频。#import "FFMpegAudioDecoder.h"#ifdef __cplusplusextern "C" {#endif #include #include #include #include #ifdef __cplusplus};#endif@interface FFMpegAudioDecoder(){

2017-09-01 11:07:37 427

原创 ios ffmpeg(libfdk-aac) aac encode

使用ffmpeg编码aac,使用libfdk-aac。#import "FFMpegAACEncoder.h"#ifdef __cplusplusextern "C" {#endif #include #include #include #include #ifdef __cplusplus};#endif#define ENCODE_SIZE 102

2017-09-01 11:04:25 609

原创 ios ffmpeg h264 decode

ios使用ffmpeg解码h264数据封装。#import "FFMpegAVCDecoder.h"#ifdef __cplusplusextern "C" {#endif #include #include #include #include #ifdef __cplusplus};#endif@interface FFMpegAVCDecoder(

2017-09-01 10:56:30 423

原创 ios ffmpeg h264 encode

简单封装了下,ffmepg需要包含libx264。#import "FFMpegAVCEncode.h"#ifdef __cplusplusextern "C" {#endif #include #include #include #include #ifdef __cplusplus};#endif@implementation FFMpegAV

2017-09-01 10:53:24 379

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除