Skip to content

Commit de5ca51

Browse files
committed
newsletter: Add a note about FFmpeg video demuxing
1 parent 5a2960f commit de5ca51

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed
Binary file not shown.

src/content/newsletters/2025-03-31.mdx

+20
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,26 @@ intrinsic sizes during the process of determining a box's final size, requiring
7979
constraints. Caching these intrinsic measurements for boxes unaffected by layout invalidation is a good step towards
8080
improving layout performance and reducing redundant computations during relayout.
8181

82+
### FFmpeg Demuxing
83+
84+
In June 2024, we switched to decoding videos with FFmpeg, which gave us access to decoding non-VP9 videos. However, we
85+
did not demux video containers with FFmpeg and still used our homegrown Matroska demuxer. For example, this meant we
86+
could only play H.264 videos if they were in an MKV container file. This month, we've replaced our Matroska demuxer
87+
with FFmpeg's libavformat demuxer. This provides us access to all the container files FFmpeg supports, the most popular
88+
one being MP4.
89+
90+
<video controls style="margin-bottom: 2em">
91+
<source src="/assets/img/newsletter-mar-2025-video-chrome-for-devs-view-transitions-demo.mp4"></source>
92+
</video>
93+
94+
If we don't advertise support for (Managed)MediaSource, we can even play the 360p H.264 fallback videos YouTube provides!
95+
96+
<video controls style="margin-bottom: 2em">
97+
<source src="/assets/img/newsletter-mar-2025-video-rickroll.mp4"></source>
98+
</video>
99+
100+
Try playing the above MP4 videos in Ladybird!
101+
82102
### Credits
83103

84104
We'd like to thank everyone who contributed code this month:

0 commit comments

Comments
 (0)