-
FFmpeg으로 미디어 스트림 열기Streaming Media/Media Tools 2013. 6. 19. 13:34
예제 코드
static AVFormatContext *fmt_ctx = NULL; void open_input_file() { avformat_open_input(&fmt_ctx, filename, NULL, NULL); for (i = 0; i < fmt_ctx->nb_streams; i++) { AVStream *st = fmt_ctx->streams[i]; AVCodec *dec; avcodec_open2(st->codec, dec, NULL); } } void close_input_file() { for (i = 0; i < fmt_ctx->nb_streams; i++) { AVStream *st = fmt_ctx->streams[i]; avcodec_close(st->codec); } avformat_close_input(&fmt_ctx); }
예제 코드에 사용한 자료형과 함수
다음 학습
'Streaming Media > Media Tools' 카테고리의 다른 글
FFmpeg으로 트랜스코딩하는 프로그램 만들기 (1) 2013.06.21 FFmpeg으로 재생하는 프로그램 만들기 (1) 2013.06.20 FFmpeg 데이타 흐름 다이어그램 (0) 2013.06.17 FFmpeg 기본 자료형 - AVFifoBuffer (0) 2013.06.10 WebRTC: 비디오 캡쳐화면 보여주기 (0) 2013.03.12 댓글