FFMpeg示例程序

时间:2012-01-26 07:39:24

标签: c linux ubuntu ffmpeg

我目前正在学习Martin Bohme Tutorial Here

的ffmpeg教程

我想使用Code Block IDE编译一个ffmpeg示例程序,但它不能

#include <stdio.h>
#include <stdlib.h>

#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"

int main(int argc, char *argv[])
{
av_register_all();

    return 0;
}

请帮帮我。如何编译它。我正在使用Linux(Ubuntu)

2 个答案:

答案 0 :(得分:0)

您可以尝试使用以下命令在Linux中进行编译。

gss <program-name.c> 

答案 1 :(得分:-2)

对于喜欢eclipse的IDE,请关注FFMPEG - Eclipse Setup Guide[Linux] official