mirror of
https://github.com/arcodange-org/mediabunny.git
synced 2026-09-27 10:53:50 +02:00
* 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]>
29 lines
1023 B
Markdown
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> |