Application Programming/FFmpeg(3)
-
[FFmpeg] 동영상 디코딩
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126#include "Header.h" int main(void){ av_register_all(); //ffmpedg에서 지원되는 모든 Demuxer, Muxer, Codec, Protocol을 사용할 수 있도록 등록 //전체 코드..
2016.08.31 -
[FFmpeg] 기본 소스코드
헤더 파일 12345678910111213141516171819///> Include FFMpegextern "C" {#include #include #include #include #include #include } ///> Library Link On Windows System #pragma comment(lib,"avformat.lib")#pragma comment(lib,"avcodec.lib")#pragma comment(lib,"swresample.lib")#pragma comment(lib,"swscale.lib")#pragma comment(lib,"avutil.lib")#pragma comment( lib, "avformat.lib" )#pragma comment( lib, "avutil..
2016.08.30 -
[FFmpeg] 환경 구축
1) FFmpeg 공식홈페이지( http://ffmpeg.zeranoe.com/builds/ )에서 share, dev파일을 다운로드 한다. 2) share파일 에서 bin 폴더를, dev파일에서 include와 lib폴더를 꺼내 셋이 한 곳에 모아둔다.--> bin 폴더 안에는 DDL파일, include폴더 안에는 헤더파일, lib폴더 안에는 lib파일이 있다! 3) VisualStudio에서 새 프로젝트를 만든 뒤 프로젝트 property를 연다. x64용 라이브러리를 받았다면 Platform을 Win32에서 x64로 바꿔준다. x64가 없다면 오른쪽의 Configuration Manager에서 x64를 추가할 수 있다. 4) Configuration Properties > Debugging > En..
2016.08.27