hdr10plus_tool VS Av1an

Compare hdr10plus_tool vs Av1an and see what are their differences.

hdr10plus_tool

CLI utility to work with HDR10+ in HEVC files. (by quietvoid)

Av1an

Cross-platform command-line AV1 / VP9 / HEVC / H264 encoding framework with per scene quality encoding (by master-of-zen)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
hdr10plus_tool Av1an
4 65
278 1,356
- -
4.9 7.5
about 1 month ago 12 days ago
Rust Rust
MIT License GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

hdr10plus_tool

Posts with mentions or reviews of hdr10plus_tool. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-11.
  • Is it possible to convert Dolby Vision to HDR10+?
    2 projects | /r/ffmpeg | 11 Jan 2023
    From what I gathered, it is possible to convert HDR10+ content to Dolby Vision using dovi_tool and hdr10plus_tool. But I haven't seen any tutorial on doing the opposite: taking the dynamic metadata from Dolby Vision and converting it to HDR10+. I have found posts with this question but with no solution. The replies to this one (from 2020) suggest that it is theoretically possible but that you would need more info about the DV metadata. Now, using dovi_tool, it is possible to extract the Dolby Vision metadata into a JSON file. But, while dovi_tool is able to generate a DV RPU using a JSON file containing HDR10+ metadata, hdr10plus_tool has no similar option. Is there any way to convert the DV metadata to something usable by hdr10plus_tool to inject in HEVC?
  • Downscaling 4k hdr 10bit to 1080p but maintaining hdr 10bit?
    2 projects | /r/ffmpeg | 3 Jan 2022
    NOW, for dynamic HDR (HDR10+ or Dolby Vision), it's more involved but there is indeed a way to create encoded files with dynamic HDR metadata now by using dovi_tool for Dolby Vision, or hdr10plus_tool for HDR10+ files (or you can use BOTH on it if you have a file that is compliant with both standards). This one requires de-muxing the dynamic metadata from the isolated HEVC videostream of your source file, encoding your file an isolated HEVC stream, injecting the dynamic metadata back in to the encoded HEVC stream, then finally merging that with your MKV containing everything else. This is more complicated but here's the script for THAT...
  • Create Dolby Vision from HDR10+
    3 projects | /r/ffmpeg | 5 Nov 2021
    downloaded quietvoid's HDR10Plus_Tool 1.0.0 (from https://github.com/quietvoid/hdr10plus_tool/releasesl)
  • Editing .mkv HDR Footage
    2 projects | /r/HDR | 1 Jul 2021
    You could also try converting the mkv to mp4 using ffmpeg and manually copy the HDR metadata over, which Premiere Pro then understands. It's just a bunch of tags telling the software what the pixel numbers mean. This can be done with reencoding, or maybe without if the mkv contains a video stream already in the right format and just needs to be moved into a mp4 (might not even require manually specifying metadata, maybe the converter you used just didn't support it). I'm not sure about formats like HDR10+ that have multiple metadata updates in a single video, you could use this to extract the metadata but I don't know how to pass that into ffmpeg again.

Av1an

Posts with mentions or reviews of Av1an. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-03.
  • Guide to Adopting AV1 Encoding
    4 projects | news.ycombinator.com | 3 Nov 2023
    The hardware encoders are very fast and generally better than x264 (but not by as much as you'd think with the x264 slow preset).

    In addition, there are threaded AV1 encoders you may be overlooking, like SVT-AV1. For non-realtime, my favorite is av1an, which also yields better quality than is possible from aomenc: https://github.com/master-of-zen/Av1an

  • I have a feeling crunchyroll should be using AV1
    1 project | /r/Crunchyroll | 28 Jun 2023
    I specifically used https://github.com/master-of-zen/Av1an with --target-quality 100 to keep the compression as close to lossless as possible (you could probably shave even more size off if you didn’t use near-lossless compression)
  • Automatic choose encode settings?
    3 projects | /r/ffmpeg | 29 May 2023
    There's also Av1an as suggested by someone else. It's going to produce more efficient encodes because it uses chunk-based encoding to reach the required VMAF for every single chunk, but this is also slower because every chunk will be re-encoded until the VMAF target is reached. It's also a PITA to compile, has a long list of bugs, and isn't very actively developed. One of the long-standing issues is that frames have a tendency to go missing during splitting, which IME is going to keep happening when the input files aren't standardized. And thus the recommendation is to transcode the input to lossless first, which is just completely unsustainable.
  • Building pc for ffmpeg rendering
    1 project | /r/ffmpeg | 11 May 2023
    i'm still trying to figure out if av1an is the breakthrough to using large CPU counts without losing quality. but it's a ridiculously poorly documented program. i haven't gotten it to run effectively yet. https://github.com/master-of-zen/Av1an
  • Codecs for the 4K Era: HEVC, AV1, VVC and Beyond
    1 project | /r/hardware | 17 Apr 2023
    I don't know about VVC, but I've never seen a recommendation of preset 0 for SVT-AV1. The docs say "presets 1-3 represent extremely high efficiency, for use when encode time is not important and quality/size of the resulting video file is critical". It seems like 0 is the equivalent placebo preset. But if you want AV1 with coding efficiency over all else, IIRC the typical approach is to use av1an to detect scene transitions and farm out parallel encodes with aomenc.
  • Automating av1 encoding?
    1 project | /r/AV1 | 18 Feb 2023
    That might be because it doesn't work.
  • VMAF is confusing me
    2 projects | /r/DataHoarder | 29 Jan 2023
    Have you seen Av1an? It's supposed to encode to a target VMAF.
  • Trying to use av1an without success
    1 project | /r/AV1 | 25 Jan 2023
    Are you using the current version, 0.4.0, from https://github.com/master-of-zen/Av1an/releases
  • Av1an - Cross-platform command-line AV1 encoding framework written in Rust
    1 project | /r/CKsTechNews | 17 Jan 2023
  • Av1an: Cross-platform command-line AV1 encoding framework written in Rust
    1 project | news.ycombinator.com | 17 Jan 2023

What are some alternatives?

When comparing hdr10plus_tool and Av1an you can also consider the following projects:

dovi_tool - dovi_tool is a CLI tool combining multiple utilities for working with Dolby Vision.

HandBrake - HandBrake's main development repository

FFmpeg - Mirror of https://git.ffmpeg.org/ffmpeg.git

SVT-AV1

dlb_mp4base - The Dolby MP4 streaming muxer (dlb_mp4base) is a software implementation of a muxer of fragmented or unfragmented ISO base media file format (mp4). It supports muxing of Dolby Digital (AC-3), Dolby Digital Plus (E-AC-3), and Dolby AC-4 audio formats as well as Dolby Vision.

FastFlix - FastFlix is a free GUI for HEVC and AV1 encoding, GIF/WebP/AVIF creation, and more!

image-hdr - An implementation of HDR Radiance Estimation using Poisson Photon Noise Estimator for creating HDR image from a set of images

NotEnoughAV1Encodes - GUI for AV1 (aomenc, rav1e & svt-av1)

oculante - A fast and simple image viewer / editor for many opering systems

FFmpeg-Builds

ab-av1 - AV1 re-encoding using ffmpeg, svt-av1 & vmaf.

nmkoder - Media encoding, muxing, analysis toolkit for Windows