5

ffmpeg を使用してビデオ ファイルを読み込もうとしています。私はそれのやや古いバージョンに対応する作業コードを持っていたので、最新のビルドバージョンにアップグレードしようとし始め、非推奨のすべての機能を実際の類似物と交換しました。

しかし、私は問題に遭遇しました。ストリームが取得されていないようで、ビデオのロードがトラックで停止します。

ここに私が使用しているコードがあります:

   // Open video file
   if(avformat_open_input(&pFormatCtx, filename.toStdString().c_str(), NULL, NULL)!=0)
       return FILE_NOT_OPENED; // Couldn't open file

   // Retrieve stream information
   if(avformat_find_stream_info(pFormatCtx,NULL)<0)
       return NO_STREAM_INFO; // Couldn't find stream information

   // Dump information about file onto standard error
   av_dump_format(pFormatCtx, 0, filename.toStdString().c_str(), false);

   // Find the first video stream
   videoStream=-1;
   for(unsigned i=0; i<pFormatCtx->nb_streams; i++)
       if(pFormatCtx->streams[i]->codec->codec_type==ffmpeg::AVMEDIA_TYPE_VIDEO)
       {
           videoStream=i;
           break;
       }
   if(videoStream==-1)
       return OTHER; // Didn't find a video stream

   // Get a pointer to the codec context for the video stream
   pCodecCtx=pFormatCtx->streams[videoStream]->codec;

   // Find the decoder for the video stream
   pCodec=avcodec_find_decoder(pCodecCtx->codec_id);
   if(pCodec==NULL)
       return CODEC_NOT_FOUND; // Codec not found

   // Open codec
   if(avcodec_open2(pCodecCtx, pCodec,NULL)<0)
       return CODEC_NOT_OPENED; // Could not open codec

この問題は、 のビデオ ストリームのサイクルで発生しますffmpeg::AVFormatContext *pFormatCtx。nb_streams フィールドは 0 であり、実際にサイクルに入ることはなく、コーデックがロードされていないなどです。奇妙なことに、av_dump_format は次の出力を提供します。

License: GPL version 3 or later
AVCodec version 3606372
AVFormat configuration: --disable-static --enable-shared --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib
[asf @ 004e9540] Stream #0: not enough frames to estimate rate; consider increasing probesize
Input #0, asf, from 'C:/Users/Public/Videos/Sample Videos/Wildlife.wmv':
  Metadata:
    SfOriginalFPS   : 299700
    WMFSDKVersion   : 11.0.6001.7000
    WMFSDKNeeded    : 0.0.0.0000
    comment         : Footage: Small World Productions, Inc; Tourism New Zealand | Producer: Gary F. Spradling | Music: Steve Ball
    title           : Wildlife in HD
    copyright       : В© 2008 Microsoft Corporation
    IsVBR           : 0
    DeviceConformanceTemplate: AP@L3
  Duration: 00:00:30.09, start: 0.000000, bitrate: 6977 kb/s
    Stream #0:0(eng): Audio: wmav2 (a[1][0][0] / 0x0161), 44100 Hz, 2 channels, fltp, 192 kb/s
    Stream #0:1(eng): Video: vc1 (Advanced) (WVC1 / 0x31435657), yuv420p, 1280x720, 5942 kb/s, 29.97 tbr, 1k tbn, 1k tbc

そして2つの小川があり、日のように澄んでいます。

私はまったく困惑しています。助けてください。

4

1 に答える 1

5

av_dump_format機能するが、コード内でゼロの場合nb_streamsは、ライブラリとヘッダーが一致していないと思います。

av_dump_formatnb_streamsそのソースに見られるように、あまりにも依存しています。したがって、使用したバイナリ コードはav_dump_formatを読み取ることができますnb_streamsavformat.hヘッダーのバージョンと一致しない、プリコンパイル済みの静的または動的な avformat ライブラリを使用している可能性があります。nb_streamsしたがって、たとえば、コードが間違った場所や型を探す可能性があります。

使用するライブラリのバイナリを作成するために使用されるものと正確に一致するヘッダー ファイルを使用していることを確認してください。

于 2013-05-31T19:16:31.357 に答える