Skip to content

Commit bec3d94

Browse files
committed
fix(versioning): bump version to 0.26.0
1 parent 294a0c0 commit bec3d94

5 files changed

Lines changed: 13 additions & 7 deletions

File tree

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</a>
2222
</div>
2323

24-
**Frame** is a high-performance media conversion utility built on the Tauri v2 framework. It provides a native interface for FFmpeg operations, allowing for granular control over video and audio transcoding parameters. The application leverages a Rust-based backend for concurrent task management and process execution, coupled with a Svelte 5 frontend for configuration and state monitoring.
24+
**Frame** is a high-performance media conversion utility built on the Tauri v2 framework. It provides a native interface for FFmpeg operations, allowing for granular control over video, audio, and image conversion parameters. The application leverages a Rust-based backend for concurrent task management and process execution, coupled with a Svelte 5 frontend for configuration and state monitoring.
2525

2626
<br />
2727
<div align="center">
@@ -58,19 +58,24 @@ See [GitHub Sponsors](https://github.com/sponsors/66HEX) for full sponsorship de
5858
5959
### Media Conversion Core
6060
61-
- **Container Support:** `mp4`, `mkv`, `webm`, `mov`, `gif`, `mp3`, `m4a`, `wav`, `flac`.
61+
- **Media Types:** Video, Audio, Image.
62+
- **Supported Output Formats:**
63+
- **Video:** `mp4`, `mkv`, `webm`, `mov`, `gif`
64+
- **Audio:** `mp3`, `m4a`, `wav`, `flac`
65+
- **Image:** `png`, `jpg`, `webp`, `bmp`, `tiff`
6266
- **Video Encoders:**
6367
- `libx264` (H.264 / AVC)
6468
- `libx265` (H.265 / HEVC)
6569
- `vp9` (Google VP9)
6670
- `prores` (Apple ProRes)
6771
- `libsvtav1` (Scalable Video Technology AV1)
6872
- **Hardware Acceleration:** `h264_videotoolbox` (Apple Silicon), `hevc_videotoolbox` (Apple Silicon), `h264_nvenc` (NVIDIA), `hevc_nvenc` (NVIDIA), `av1_nvenc` (NVIDIA).
73+
- **Image Encoders:** `png`, `mjpeg` (JPEG), `libwebp` (WebP), `bmp`, `tiff`.
6974
- **Audio Encoders:** `aac`, `ac3` (Dolby Digital), `libopus`, `mp3`, `alac` (Apple Lossless), `flac` (Free Lossless Audio Codec), `pcm_s16le` (WAV).
7075
- **Bitrate Control:** Constant Rate Factor (CRF) or Target Bitrate (kbps).
7176
- **Scaling:** Bicubic, Lanczos, Bilinear, Nearest Neighbor.
7277
- **Metadata Probing:** Automated extraction of stream details (codec, duration, bitrate, channel layout) via `ffprobe`.
73-
- **AI Upscaling:** Integrated `Real-ESRGAN` for high-quality video upscaling (x2, x4).
78+
- **AI Upscaling:** Integrated `Real-ESRGAN` for high-quality video and image upscaling (x2, x4).
7479
7580
### Architecture & Workflow
7681
@@ -203,6 +208,7 @@ bun run setup:upscaler
203208
- **Source:** View detected file metadata.
204209
- **Output:** Select container format and output filename.
205210
- **Video:** Configure codec, bitrate/CRF, resolution, and framerate.
211+
- **Images:** Configure image resolution/scaling, pixel format, and optional AI upscaling.
206212
- **Audio:** Select codec, bitrate, channels, and specific tracks.
207213
- **Presets:** Save and load reusable conversion profiles.
208214
3. **Execution:** Initiates the conversion process via the Rust backend.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frame",
3-
"version": "0.25.3",
3+
"version": "0.26.0",
44
"private": true,
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frame"
3-
version = "0.25.3"
3+
version = "0.26.0"
44
description = "A simple FFmpeg GUI"
55
edition = "2024"
66
authors = ["Marek Jóźwiak <[email protected]>"]

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Frame",
4-
"version": "0.25.3",
4+
"version": "0.26.0",
55
"identifier": "Frame",
66
"build": {
77
"beforeDevCommand": "node scripts/run.cjs dev",

0 commit comments

Comments
 (0)