Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 1개 있습니다.)

AForge.Video.FFMPEG를 최신 버전의 ffmpeg 파일로 의존성을 변경하는 방법

AForge.Video.FFMPEG.dll의 소스 코드는 AForge.NET Framework에 포함되어 있기 때문에 이를 다운로드하면 됩니다.

소스코드 - AForge.NET Framework-2.2.5.zip
; https://code.google.com/archive/p/aforge/downloads
; https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/aforge/AForge.NET%20Framework-2.2.5.zip

압축 해제 후, AForge.Video.FFMPEG 빌드와 관련된 폴더는 다음과 같습니다.

\Externals\ffmpeg - 구 버전의 ffpeg bin, lib, includ 파일 포함
\Sources\Video.FFMPEG - Video.FFMPEG.sln 솔루션 파일까지 포함한 C++/CLI 프로젝트 (x86)

보는 바와 같이 Video.FFMPEG.vcxproj 프로젝트는 \Externals\ffmpeg 폴더 하위에 있는 ffmpeg 라이브러리에 의존성을 갖기 때문에 이 폴더의 내용을 최신으로 업데이트해 주면 됩니다.

(마지막으로 릴리스된) 2.2.5 버전의 AForge.NET Framework에 포함되어 있는 AForge.Video.FFMPEG 프로젝트는 다음의 ffmpeg 라이브러리에 의존성을 갖습니다.

  • avcodec-53.dll
  • avformat-53.dll
  • avutil-51.dll
  • swresample-0.dll
  • swscale-2.dll

그런데 현재(2016-10-29) ffmpeg 3.1.5 버전은,

Download FFmpeg for Windows
; https://ffmpeg.zeranoe.com/builds/

다음의 DLL들로 구성되므로,

  • avcodec-57.dll
  • avformat-57.dll
  • avutil-55.dll
  • swresample-2.dll
  • swscale-4.dll

이를 \Externals\ffmpeg\bin 폴더에 복사해야 할 뿐만 아니라 컴파일을 위해 include, lib 파일들을 구해야 합니다. 이 모든 것은 FFmpeg 라이브러리와, 개발자 용 버전을 통해 구할 수 있습니다.

  • ffmpeg-3.1.5-win32-shared.zip
  • ffmpeg-3.1.5-win32-dev.zip

따라서, AForge Framework의 \Externals\ffmpeg 폴더 내용을 모두 삭제하고, ffmpeg-3.1.5-win32-shared.zip의 압축을 \Externals\ffmpeg 폴더에 풀고, ffmpeg-3.1.5-win32-dev.zip 내용 중에서 "include", "lib" 폴더만 \Externals\ffmpeg 폴더에 넣어 주면 됩니다.



준비는 이것으로 끝났지만, 아쉽게도 하위 호환성이 깨진 부분이 있기 때문에 빌드 시에 맞춰주어야 할 부분이 있습니다.

우선, 다음의 코드에서 오류가 발생할 텐데요.

int video_codecs[] =
{
    libffmpeg::CODEC_ID_MPEG4,
    libffmpeg::CODEC_ID_WMV1,
    libffmpeg::CODEC_ID_WMV2,
    libffmpeg::CODEC_ID_MSMPEG4V2,
    libffmpeg::CODEC_ID_MSMPEG4V3,
    libffmpeg::CODEC_ID_H263P,
    libffmpeg::CODEC_ID_FLV1,
    libffmpeg::CODEC_ID_MPEG2VIDEO,
    libffmpeg::CODEC_ID_RAWVIDEO
};

int pixel_formats[] =
{
    libffmpeg::PIX_FMT_YUV420P,
    libffmpeg::PIX_FMT_YUV420P,
    libffmpeg::PIX_FMT_YUV420P,
    libffmpeg::PIX_FMT_YUV420P,
    libffmpeg::PIX_FMT_YUV420P,
    libffmpeg::PIX_FMT_YUV420P,
    libffmpeg::PIX_FMT_YUV420P,
    libffmpeg::PIX_FMT_YUV420P,
    libffmpeg::PIX_FMT_BGR24,
};

CODEC_ID_???는 AV_CODEC_ID_???로 바꾸고, PIX_FMT_???은 AV_PIX_FMT_???로 바꿔주면 됩니다.

그 외의 함수들 변화는 다음의 글에 따라,

[ffmpeg.git / doc / APIchanges
; http://git.videolan.org/?p=ffmpeg.git;a=blob;f=doc/APIchanges;h=250088b24fd6597bcd3a2b50b53cbfe077d06cef;hb=1985c2e75c607ac51bfd8dc87d2957a5edf2b6f8

이런 식으로 적절하게 바꿔주면 됩니다.

av_open_input_file ==> avformat_open_input
av_find_stream_info ==> avformat_find_stream_info
avcodec_open ==> avcodec_open2
avcodec_alloc_frame ==> av_frame_alloc
av_close_input_file ==> avformat_close_input
av_write_header ==> avformat_write_header
avcodec_encode_video ==> avcodec_encode_video2
av_new_stream ==> avformat_new_stream
av_set_parameters ==> 호출 제거

그런데, 제가 ffmpeg 사용법을 잘 몰라 확신할 수 없는 것이 2가지 있습니다. 하나는 av_set_parameters 같은 경우 대응하는 함수가 없어 제거를 했다는 점과 나머지 하나는 avformat_open_input 함수가 사용법이 달라져서 (ffmpeg를 모르는 상태로) 고쳤다는 점입니다.

특히나 "av_open_input_file" 함수의 경우 "avformat_open_input"으로 대체하는데, 사용 전 반드시 다음과 같이 avformat_alloc_context를 이용해 할당을 해줘야 했습니다. (고맙게도 close 시에 avformat_free_context는 호출하지 않아도 된다고 합니다.)

static libffmpeg::AVFormatContext* open_file( char* fileName )
{
    libffmpeg::AVFormatContext* formatContext = libffmpeg::avformat_alloc_context();

    if ( libffmpeg::avformat_open_input( &formatContext, fileName, NULL, NULL) !=0 )
    {
        return NULL;
    }

    return formatContext;
}

이 정도 변경하고 빌드하면 정상적으로 동작하는 (것 같은) 바이너리를 얻을 수 있습니다.

(첨부 파일은 이 글의 Video.FFMPEG.vcxproj 프로젝트를 포함합니다. 또한 github에도 올려두었습니다.)






[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 11/1/2016]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 31  32  33  34  [35]  36  37  38  39  40  41  42  43  44  45  ...
NoWriterDateCnt.TitleFile(s)
12750정성태8/3/20216199디버깅 기술: 181. windbg - 콜 스택의 "Call Site" 오프셋 값이 가리키는 위치
12749정성태8/2/20215615개발 환경 구성: 590. Visual Studio 2017부터 단위 테스트에 DataRow 특성 지원
12748정성태8/2/20216229개발 환경 구성: 589. Azure Active Directory - tenant의 관리자(admin) 계정 로그인 방법
12747정성태8/1/20216827오류 유형: 748. 오류 기록 - MICROSOFT GRAPH – HOW TO IMPLEMENT IAUTHENTICATIONPROVIDER파일 다운로드1
12746정성태7/31/20218837개발 환경 구성: 588. 네트워크 장비 환경을 시뮬레이션하는 Packet Tracer 프로그램 소개
12745정성태7/31/20216665개발 환경 구성: 587. Azure Active Directory - tenant의 관리자 계정 로그인 방법
12744정성태7/30/20217282개발 환경 구성: 586. Azure Active Directory에 연결된 App 목록을 확인하는 방법?
12743정성태7/30/20217972.NET Framework: 1083. Azure Active Directory - 외부 Token Cache 저장소를 사용하는 방법파일 다운로드1
12742정성태7/30/20217257개발 환경 구성: 585. Azure AD 인증을 위한 사용자 인증 유형
12741정성태7/29/20218438.NET Framework: 1082. Azure Active Directory - Microsoft Graph API 호출 방법파일 다운로드1
12740정성태7/29/20217126오류 유형: 747. SharePoint - InvalidOperationException 0x80131509
12739정성태7/28/20217087오류 유형: 746. Azure Active Directory - IDW10106: The 'ClientId' option must be provided.
12738정성태7/28/20217655오류 유형: 745. Azure Active Directory - Client credential flows must have a scope value with /.default suffixed to the resource identifier (application ID URI).
12737정성태7/28/20216640오류 유형: 744. Azure Active Directory - The resource principal named api://...[client_id]... was not found in the tenant
12736정성태7/28/20217126오류 유형: 743. Active Azure Directory에서 "API permissions"의 권한 설정이 "Not granted for ..."로 나오는 문제
12735정성태7/27/20217643.NET Framework: 1081. C# - Azure AD 인증을 지원하는 데스크톱 애플리케이션 예제(Windows Forms) [2]파일 다운로드1
12734정성태7/26/202123645스크립트: 20. 특정 단어로 시작하거나/끝나는 문자열을 포함/제외하는 정규 표현식 - Look-around
12733정성태7/23/202110999.NET Framework: 1081. Self-Contained/SingleFile 유형의 .NET Core/5+ 실행 파일을 임베딩한다면? [1]파일 다운로드2
12732정성태7/23/20216318오류 유형: 742. SharePoint - The super user account utilized by the cache is not configured.
12731정성태7/23/20217384개발 환경 구성: 584. Add Internal URLs 화면에서 "Save" 버튼이 비활성화 된 경우
12730정성태7/23/20218933개발 환경 구성: 583. Visual Studio Code - Go 코드에서 입력을 받는 경우
12729정성태7/22/20217908.NET Framework: 1080. xUnit 단위 테스트에 메서드/클래스 수준의 문맥 제공 - Fixture
12728정성태7/22/20217362.NET Framework: 1079. MSTestv2 단위 테스트에 메서드/클래스/어셈블리 수준의 문맥 제공
12727정성태7/21/20218313.NET Framework: 1078. C# 단위 테스트 - MSTestv2/NUnit의 Assert.Inconclusive 사용법(?) [1]
12726정성태7/21/20218130VS.NET IDE: 169. 비주얼 스튜디오 - 단위 테스트 선택 시 MSTestv2 외의 xUnit, NUnit 사용법 [1]
12725정성태7/21/20216900오류 유형: 741. Failed to find the "go" binary in either GOROOT() or PATH
... 31  32  33  34  [35]  36  37  38  39  40  41  42  43  44  45  ...