Git Product home page Git Product logo

Comments (7)

tnti avatar tnti commented on May 27, 2024

Remove the following parameters
-level 5.1

Please see the URL below for details.
https://en.wikipedia.org/wiki/High_Efficiency_Video_Coding_tiers_and_levels

from svt-hevc.

edisongjs avatar edisongjs commented on May 27, 2024

Thanks. It produces 16M, 20M bitrate TS files.
It is very strange. The link says that the max bit rate is 40Mbps (40000 with 1000bps unit) for main tier. Do I miss anything here? Encoded video doesn't show level on MediaInfo.

from svt-hevc.

edisongjs avatar edisongjs commented on May 27, 2024

Higher tier max bit rate is 160,000 which is even bigger. It should be read as 160M not 16M. See the unit is kbps not bps.

Max bit rate for Main and Main 10 profiles (1000bits/s)[A

from svt-hevc.

tnti avatar tnti commented on May 27, 2024

SVT [Error]: Instance 1: Out of bound maxBufferSize for level 5.1 and tier 0
[libsvt_hevc @ 0x351e140] Error setting encoder parameters

You should read the error message carefully to adjust the encoder parameters.

from svt-hevc.

jsunintel avatar jsunintel commented on May 27, 2024

When setting wrong parameter, the plugin broke and coredump happened. This one is already fixed. Please try to the latest plugin version.

from svt-hevc.

edisongjs avatar edisongjs commented on May 27, 2024

I read the error message about maxBufferSize. However where did the restriction come? I do not see this restriction from the provided link. X265 is just fine with the same setting (main10, level 5.1).

from svt-hevc.

jsunintel avatar jsunintel commented on May 27, 2024

The restriction comes from SVT-HEVC lib.

    static EB_U32 mainTierCPB[TOTAL_LEVEL_COUNT] = { 350000, 1500000, 3000000, 6000000, 10000000, 12000000, 20000000, 25000000, 40000000, 60000000, 60000000, 120000000, 240000000 };

    if ((config->level != 0) && (config->rateControlMode) && (config->tier == 0) && ((config->targetBitRate * 3) > mainTierCPB[levelIdx])) {
    SVT_LOG("SVT [Error]: Instance %u: Out of bound maxBufferSize for level %s and tier 0 \n",channelNumber+1, levelIdc);
    return_error = EB_ErrorBadParameter;
}

SVT-HEVC is on Github, which you have access to its code.

from svt-hevc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.