문제

In ffmpeg, is there any way to tell if a codec (AVCodec or AVCodecContext) supports interframe encoding?

도움이 되었습니까?

해결책

Possibility of interframe is not indicated in the AVCodec structure itself

Header file avcodec.h http://git.videolan.org/?p=ffmpeg.git;a=blob;f=libavcodec/avcodec.h;h=fdc86bb7c09025df30ff7536a0dd9a55efabb20c;hb=HEAD#l628 defines no CODEC_CAP_* capability flag for interframe support

It is internal capability of codec, which may be indicated only as text in Profile description e.g. FF_PROFILE_H264_HIGH_10_INTRA

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top