On Wed, Nov 19, 2008 at 8:10 AM, Ferran Muñoz <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I'm developing an application that generates video in flv format using
> ffmpeg API.
> The FLV video file is OK. I can play it using several FLV players.
> The problem I have is that the metadata of FLV is not created.
> Can you give me some hint or advice?
> Perhaps I must put something in the second param of 'av_set_parameters',
> but I don't know what.
>
> Thanks in advance.
>
> Ferran
>

Hi Ferran,

By default the FLV muxer saves space for the metadata at the front of
your file, but doesn't write the Metadata until you write the trailer.
 See:
av_write_trailer(AVFormatContext*) in libavformat/avformat.h

- Art
_______________________________________________
libav-user mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/libav-user

Reply via email to