[FFmpeg-devel] [PATCH] Ogg/Speex muxer
Justin Ruggles
justin.ruggles
Fri Feb 6 22:39:37 CET 2009
Peter Ross wrote:
> $subject.
>
> -- Peter
> (A907 E02F A6E5 0CD2 34CD 20D2 6760 79C5 AC40 DD6B)
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at mplayerhq.hu
> https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-devel
> Index: libavformat/oggenc.c
> ===================================================================
> --- libavformat/oggenc.c (revision 16998)
> +++ libavformat/oggenc.c (working copy)
> @@ -1,6 +1,7 @@
> /*
> * Ogg muxer
> * Copyright (c) 2007 Baptiste Coudurier <baptiste dot coudurier at free dot fr>
> + * Copyright (c) 2009 Peter Ross
> *
> * This file is part of FFmpeg.
> *
> @@ -111,6 +112,76 @@
> return 0;
> }
>
> +/**
> + * Vorbis comment keys
> + * http://www.xiph.org/vorbis/doc/v-comment.html
> + * http://wiki.xiph.org/index.php/VorbisComment
> + */
> +static const char *ogg_keys[] = {
> + "ARTIST",
> + "CONTACT",
> + "COPYRIGHT",
> + "COVERART",
According to Xiph, although the COVERART tag is used by some programs,
it is not their recommended way to include cover art in a VorbisComment.
http://wiki.xiph.org/index.php/VorbisComment
-Justin
More information about the ffmpeg-devel
mailing list