Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH 1/2] web: add a news entry for IAMF
@ 2024-01-05 10:49 Anton Khirnov
  2024-01-05 10:49 ` [FFmpeg-devel] [PATCH 2/2] web: add a news entry for VVC Anton Khirnov
  2024-01-05 12:23 ` [FFmpeg-devel] [PATCH 1/2] web: add a news entry for IAMF James Almer
  0 siblings, 2 replies; 5+ messages in thread
From: Anton Khirnov @ 2024-01-05 10:49 UTC (permalink / raw)
  To: ffmpeg-devel

---
 src/index | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/index b/src/index
index 9a21161..a2536ff 100644
--- a/src/index
+++ b/src/index
@@ -35,6 +35,13 @@
     News
   </h1>
 
+  <h3 id="iamf">December 18th, 2023, IAMF support</h3>
+  <p>
+  The <code>libavformat</code> library can now read and write <a href="https://aomediacodec.github.io/iamf/">IAMF</a>
+  (Immersive Audio) files. The <code>ffmpeg</code> CLI tool can configure IAMF structure with the new
+  <code>-stream_group</code> option. IAMF support was written by James Almer.
+  </p>
+
   <h3 id="cli_threading">December 12th, 2023, multi-threaded <code>ffmpeg</code> CLI tool</h3>
   <p>
   Thanks to a major refactoring of the <code>ffmpeg</code> command-line tool, all the major
-- 
2.42.0

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [FFmpeg-devel] [PATCH 2/2] web: add a news entry for VVC
  2024-01-05 10:49 [FFmpeg-devel] [PATCH 1/2] web: add a news entry for IAMF Anton Khirnov
@ 2024-01-05 10:49 ` Anton Khirnov
  2024-01-05 16:27   ` Kieran Kunhya
  2024-01-05 12:23 ` [FFmpeg-devel] [PATCH 1/2] web: add a news entry for IAMF James Almer
  1 sibling, 1 reply; 5+ messages in thread
From: Anton Khirnov @ 2024-01-05 10:49 UTC (permalink / raw)
  To: ffmpeg-devel

---
 src/index | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/index b/src/index
index a2536ff..98cc516 100644
--- a/src/index
+++ b/src/index
@@ -35,6 +35,14 @@
     News
   </h1>
 
+  <h3 id="vvcdec">January 3rd, 2024, native VVC decoder</h3>
+  <p>
+  The <code>libavcodec</code> library now contains a native VVC (Versatile Video Coding)
+  decoder, supporting a large subset of the codec's features. Further optimizations and
+  support for more features are coming soon. The code was written by Nuo Mi, Xu Mu,
+  Frank Plowman, Shaun Loo, and Wu Jianhua.
+  </p>
+
   <h3 id="iamf">December 18th, 2023, IAMF support</h3>
   <p>
   The <code>libavformat</code> library can now read and write <a href="https://aomediacodec.github.io/iamf/">IAMF</a>
-- 
2.42.0

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH 1/2] web: add a news entry for IAMF
  2024-01-05 10:49 [FFmpeg-devel] [PATCH 1/2] web: add a news entry for IAMF Anton Khirnov
  2024-01-05 10:49 ` [FFmpeg-devel] [PATCH 2/2] web: add a news entry for VVC Anton Khirnov
@ 2024-01-05 12:23 ` James Almer
  1 sibling, 0 replies; 5+ messages in thread
From: James Almer @ 2024-01-05 12:23 UTC (permalink / raw)
  To: ffmpeg-devel

On 1/5/2024 7:49 AM, Anton Khirnov wrote:
> ---
>   src/index | 7 +++++++
>   1 file changed, 7 insertions(+)
> 
> diff --git a/src/index b/src/index
> index 9a21161..a2536ff 100644
> --- a/src/index
> +++ b/src/index
> @@ -35,6 +35,13 @@
>       News
>     </h1>
>   
> +  <h3 id="iamf">December 18th, 2023, IAMF support</h3>
> +  <p>
> +  The <code>libavformat</code> library can now read and write <a href="https://aomediacodec.github.io/iamf/">IAMF</a>
> +  (Immersive Audio) files. The <code>ffmpeg</code> CLI tool can configure IAMF structure with the new
> +  <code>-stream_group</code> option. IAMF support was written by James Almer.
> +  </p>
> +
>     <h3 id="cli_threading">December 12th, 2023, multi-threaded <code>ffmpeg</code> CLI tool</h3>
>     <p>
>     Thanks to a major refactoring of the <code>ffmpeg</code> command-line tool, all the major

LGTM, thanks.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH 2/2] web: add a news entry for VVC
  2024-01-05 10:49 ` [FFmpeg-devel] [PATCH 2/2] web: add a news entry for VVC Anton Khirnov
@ 2024-01-05 16:27   ` Kieran Kunhya
  2024-01-06  1:13     ` Nuo Mi
  0 siblings, 1 reply; 5+ messages in thread
From: Kieran Kunhya @ 2024-01-05 16:27 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

On Fri, 5 Jan 2024 at 10:50, Anton Khirnov <anton@khirnov.net> wrote:

> ---
>  src/index | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/src/index b/src/index
> index a2536ff..98cc516 100644
> --- a/src/index
> +++ b/src/index
> @@ -35,6 +35,14 @@
>      News
>    </h1>
>
> +  <h3 id="vvcdec">January 3rd, 2024, native VVC decoder</h3>
> +  <p>
> +  The <code>libavcodec</code> library now contains a native VVC
> (Versatile Video Coding)
> +  decoder, supporting a large subset of the codec's features. Further
> optimizations and
> +  support for more features are coming soon. The code was written by Nuo
> Mi, Xu Mu,
> +  Frank Plowman, Shaun Loo, and Wu Jianhua.
> +  </p>
> +
>    <h3 id="iamf">December 18th, 2023, IAMF support</h3>
>    <p>
>    The <code>libavformat</code> library can now read and write <a href="
> https://aomediacodec.github.io/iamf/">IAMF</a>
> --
> 2.42.0
>

LGTM
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH 2/2] web: add a news entry for VVC
  2024-01-05 16:27   ` Kieran Kunhya
@ 2024-01-06  1:13     ` Nuo Mi
  0 siblings, 0 replies; 5+ messages in thread
From: Nuo Mi @ 2024-01-06  1:13 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

On Sat, Jan 6, 2024 at 12:27 AM Kieran Kunhya <kierank@obe.tv> wrote:

> On Fri, 5 Jan 2024 at 10:50, Anton Khirnov <anton@khirnov.net> wrote:
>
> > ---
> >  src/index | 8 ++++++++
> >  1 file changed, 8 insertions(+)
> >
> > diff --git a/src/index b/src/index
> > index a2536ff..98cc516 100644
> > --- a/src/index
> > +++ b/src/index
> > @@ -35,6 +35,14 @@
> >      News
> >    </h1>
> >
> > +  <h3 id="vvcdec">January 3rd, 2024, native VVC decoder</h3>
> > +  <p>
> > +  The <code>libavcodec</code> library now contains a native VVC
> > (Versatile Video Coding)
> > +  decoder, supporting a large subset of the codec's features. Further
> > optimizations and
> > +  support for more features are coming soon. The code was written by Nuo
> > Mi, Xu Mu,
> > +  Frank Plowman, Shaun Loo, and Wu Jianhua.
> > +  </p>
> > +
> >    <h3 id="iamf">December 18th, 2023, IAMF support</h3>
> >    <p>
> >    The <code>libavformat</code> library can now read and write <a href="
> > https://aomediacodec.github.io/iamf/">IAMF</a>
> > --
> > 2.42.0
> >
>
> LGTM
>
+1

> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
>
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-01-06  1:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-05 10:49 [FFmpeg-devel] [PATCH 1/2] web: add a news entry for IAMF Anton Khirnov
2024-01-05 10:49 ` [FFmpeg-devel] [PATCH 2/2] web: add a news entry for VVC Anton Khirnov
2024-01-05 16:27   ` Kieran Kunhya
2024-01-06  1:13     ` Nuo Mi
2024-01-05 12:23 ` [FFmpeg-devel] [PATCH 1/2] web: add a news entry for IAMF James Almer

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git