Files
mediabunny/docs/blog.md
T
c3df2a24e5 Add custom quality factors and quantizer bitrate mode (#448)
* Add custom quality factors and quantizer bitrate mode (closes #327)

* Fix quantizer mode fallback and per-frame quantizer edge cases

* Clean up quantizer mode tests

* Quantizer implementation

* Add quality tests

* Improve conversion codec error message, make test more lenient

* Add quantizer support blog post

---------

Co-authored-by: Vanilagy <[email protected]>
2026-07-30 17:24:59 +02:00

29 lines
1023 B
Markdown

---
title: Blog posts
description: Announcements, news, and devblogs about Mediabunny.
outline: false
---
<script setup>
import { data } from './blog.data.ts';
import BlogAuthor from './components/BlogAuthor.vue';
</script>
<h1 class="!mb-8">Blog posts</h1>
<template v-for="(post, i) in [...data].sort((a, b) => b.frontmatter.publishedOnIso.localeCompare(a.frontmatter.publishedOnIso))">
<a :href="post.url" class="flex flex-col sm:flex-row items-start sm:gap-8 !text-inherit !no-underline ![font-weight:inherit] group">
<div>
<img :src="post.frontmatter.headerImage" class="shrink-0 sm:w-40 rounded" />
<div v-if="false" class="p-1">
<BlogAuthor :frontmatter="post.frontmatter" small />
</div>
</div>
<div class="flex-1">
<p class="!m-0 text-xs opacity-70">{{ post.frontmatter.publishedOn }}</p>
<h3 class="!m-0 group-hover:underline">{{ post.frontmatter.title }}</h3>
<p class="text-sm !m-0">{{ post.frontmatter.excerpt }}</p>
</div>
</a>
<hr v-if="i < data.length - 1" />
</template>