* ffmpeg 다운로드
http://ffmpeg.zeranoe.com/builds/ 에서 Dev 용으로 다운로드 받는다.
* visual studio 프로젝트 생성
* ffmpeg 의 include, lib 디렉토리를 통째로 프로젝트 폴더에 복사
* 프로젝트 속성 > 구성속성 > VC++디렉토리 > 포함디렉토리
ffmpeg 의 include 디렉토리 추가
* 프로젝트 속성 > 구성속성 > VC++디렉토리 > 라이브러리디렉토리
ffmpeg 의 lib 디렉토리 추가
* 프로젝트 속성 > 구성속성 > 링커 > 입력 > 추가종속성
ffmpeg 의 lib 파일들 다 적어줌
* inttypes.h 구해서, ffmpeg include 폴더에 넣는다 (첨부파일에는 이미 넣어놨음)
* test.c 파일 추가
#define inline _inline //이걸 제일 위에 써줘야 한다.
#include <libavcodec\avcodec.h>
#include <libavformat\avformat.h>
* 빌드
반응형
'잡다한 자료' 카테고리의 다른 글
sqlite gui tool (0) | 2015.05.14 |
---|---|
[Thrift] 맥에 Thrift 설치 방법 (0) | 2015.02.04 |
ffmpeg. Using libavformat and libavcodec: An Update 번역 (0) | 2014.07.04 |
ffmpeg. Using libavformat and libavcodec 번역 (0) | 2014.07.04 |
jquery clone (0) | 2014.07.04 |