FFmpeg的编译

FFmpeg简介

FFmpeg(全名是Fast Forward MPEG(Moving Picture Experts Group))是全球领先的多媒体框架,能够解码(decode)、编码(encode)、转码(transcode)、复用(mux)、解复用(demux)、流化(stream)、滤波(filter)和播放几乎任何类型的多媒体文件。

FFmpeg在iOS下的编译

  1. 下载 gas-preprocessor

打开文件夹,会看到一个gas-preprocessor.pl文件,把gas-preprocessor.pl文件拷贝到/usr/local/bin/ 目录下,打开终端,输入命令:

chmod 777 /usr/local/bin/gas-preprocessor.pl

2.安装yasm
终端输入命令:

brew install yasm

如果已经安装过,提示如下,没有安装,等待安装完毕。

Updating Homebrew...
  1. 下载FFmpeg-iOS-build-script

解压后打开文件夹,里面./build-ffmpeg.sh就是一会儿我们要用的(这个文件夹千万不能删除,放好位置,以免找不到,我们一会儿需要的ffmpeg就会被编译到这个文件夹里)。cd到./build-ffmpeg.sh所在根目录

终端输入:

./build-ffmpeg.sh

注:这个脚本默认是编译FFMpeg 2.8的版本,可以通过修改 SOURCE="ffmpeg-3.3.9" 来修改你需要编译的版本,我这里选择了3.3.9版本

在这一步的时候我遇到了xcrun -sdk iphoneos clang is unable to create an executable file.
的问题,在终端输入

sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/

我当时安装了两个Xcode,一个Xcode8,另一个Xcode9,只要将Xcode.app替换成本机安装的Xcode就可以,然后再执行命令

./build-ffmpeg.sh

脚本会在./build-ffmpeg.sh同级thin文件下生成arm64,armv7,i386,x86_64四个文件夹,前两个是真机使用,后两个是模拟器使用。

FFmpeg-1.png

当终端输出 Done 说明编译完成,同时多了一个FFmpeg-iOS的文件夹,这个文件夹就是我们要用的编译后的FFmpeg

FFmpeg导入

1.导入依赖:


FFmpeg-2.png

2.设置Header Search Paths

FFmpeg-3.png

将Header Search Paths设置成和Library Search Paths相同的路径,将lib换成include

3.导入头文件

#import <libavformat/avformat.h>
#import <libavcodec/avcodec.h>
#import <libswscale/swscale.h>
#import <libavutil/avutil.h>
#import <libswresample/swresample.h>
#import <libavdevice/avdevice.h>
#import <libavfilter/avfilter.h>
#import <VideoToolbox/VideoToolbox.h>

command+b,编译成功!

FFmpeg测试

@interface ViewController ()
@property (weak, nonatomic) IBOutlet UILabel *myLabel;
@property (weak, nonatomic) IBOutlet UIButton *Protocol;
@property (weak, nonatomic) IBOutlet UIButton *AVFormat;
@property (weak, nonatomic) IBOutlet UIButton *AVCodec;
@property (weak, nonatomic) IBOutlet UIButton *AVFilter;
@property (weak, nonatomic) IBOutlet UIButton *Configure;
@property (weak, nonatomic) IBOutlet UITextView *displayView;
@property (weak, nonatomic) UIButton *selectButton;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    UIFont * font = [UIFont systemFontOfSize:15];
    self.myLabel.text = @"FFMpeg-Test";
    self.myLabel.textAlignment = NSTextAlignmentCenter;
    self.myLabel.font = font;
    self.displayView.text = @"";
    
    [self.Protocol setTitle:@"Protocol" forState:UIControlStateNormal];
    self.Protocol.titleLabel.font = font;
    [self.Protocol addTarget:self action:@selector(protocolClick:) forControlEvents:UIControlEventTouchUpInside];
    
    [self.AVFormat setTitle:@"AVFormat" forState:UIControlStateNormal];
    self.AVFormat.titleLabel.font = font;
    [self.AVFormat addTarget:self action:@selector(avformatClick:) forControlEvents:UIControlEventTouchUpInside];
    
    [self.AVCodec setTitle:@"AVCodec" forState:UIControlStateNormal];
    self.AVCodec.titleLabel.font = font;
    [self.AVCodec addTarget:self action:@selector(avcodecClick:) forControlEvents:UIControlEventTouchUpInside];
    
    [self.AVFilter setTitle:@"AVFilter" forState:UIControlStateNormal];
    self.AVFilter.titleLabel.font = font;
    [self.AVFilter addTarget:self action:@selector(avfilterClick:) forControlEvents:UIControlEventTouchUpInside];
    
    [self.Configure setTitle:@"Configure" forState:UIControlStateNormal];
    self.Configure.titleLabel.font = font;
    [self.Configure addTarget:self action:@selector(configureClick:) forControlEvents:UIControlEventTouchUpInside];
    
    
    [self setSelectColor:self.Protocol];
}


- (void)protocolClick:(UIButton *)protocol {
    char info[40000]={0};
    av_register_all();
    
    struct URLProtocol *pup = NULL;
    //Input
    struct URLProtocol **p_temp = &pup;
    avio_enum_protocols((void **)p_temp, 0);
    while ((*p_temp) != NULL){
        sprintf(info, "%s[In ][%10s]\n", info, avio_enum_protocols((void **)p_temp, 0));
    }
    pup = NULL;
    //Output
    avio_enum_protocols((void **)p_temp, 1);
    while ((*p_temp) != NULL){
        sprintf(info, "%s[Out][%10s]\n", info, avio_enum_protocols((void **)p_temp, 1));
    }
    NSString * info_ns = [NSString stringWithFormat:@"%s", info];
    self.displayView.text=info_ns;
    
    [self setSelectColor:protocol];
}

- (void)avformatClick:(UIButton *)avformat {
    char info[40000] = { 0 };
    
    av_register_all();
    AVInputFormat *if_temp = av_iformat_next(NULL);
    AVOutputFormat *of_temp = av_oformat_next(NULL);
    //Input
    while(if_temp!=NULL){
        sprintf(info, "%s[In ]%10s\n", info, if_temp->name);
        if_temp=if_temp->next;
    }
    //Output
    while (of_temp != NULL){
        sprintf(info, "%s[Out]%10s\n", info, of_temp->name);
        of_temp = of_temp->next;
    }
    NSString * info_ns = [NSString stringWithFormat:@"%s", info];
    self.displayView.text=info_ns;
    
    [self setSelectColor:avformat];
}

- (void)avcodecClick:(UIButton *)avcodec {
    char info[40000] = { 0 };
    
    av_register_all();
    AVCodec *c_temp = av_codec_next(NULL);
    while(c_temp!=NULL){
        if (c_temp->decode!=NULL){
            sprintf(info, "%s[Dec]", info);
        }
        else{
            sprintf(info, "%s[Enc]", info);
        }
        switch (c_temp->type){
            case AVMEDIA_TYPE_VIDEO:
                sprintf(info, "%s[Video]", info);
                break;
            case AVMEDIA_TYPE_AUDIO:
                sprintf(info, "%s[Audio]", info);
                break;
            default:
                sprintf(info, "%s[Other]", info);
                break;
        }
        sprintf(info, "%s%10s\n", info, c_temp->name);
        
        
        c_temp=c_temp->next;
    }
    NSString * info_ns = [NSString stringWithFormat:@"%s", info];
    self.displayView.text=info_ns;
    
    [self setSelectColor:avcodec];
}

- (void)avfilterClick:(UIButton *)avfilter {
    char info[40000] = { 0 };
    avfilter_register_all();
    AVFilter *f_temp = (AVFilter *)avfilter_next(NULL);
    while (f_temp != NULL){
        sprintf(info, "%s[%10s]\n", info, f_temp->name);
        break;
    }
    NSString * info_ns = [NSString stringWithFormat:@"%s", info];
    self.displayView.text=info_ns;
    
    [self setSelectColor:avfilter];
}

- (void)configureClick:(UIButton *)configure {
    char info[10000] = { 0 };
    av_register_all();
    sprintf(info, "%s\n", avcodec_configuration());
    NSString * info_ns = [NSString stringWithFormat:@"%s", info];
    self.displayView.text=info_ns;
    
    [self setSelectColor:configure];
}

- (void)setSelectColor:(UIButton *)button{
    [self.selectButton setTitleColor:[UIColor colorWithRed:14.0/255 green:132.0/255 blue:1.0 alpha:1.0] forState:UIControlStateNormal];
    self.selectButton = button;
    [self.selectButton setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
}

@end

FFmpeg-4.jpg

看到如图所示输出,证明FFmpeg导入成功。

FFmpeg在iOS开发中编译并使用
最简单的基于FFmpeg的移动端例子

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容