Archive:Kdenlive/Manual/Project Menu/Render/Render Profile Parameters/uk: Difference between revisions

    From KDE UserBase Wiki
    (Created page with "Дані з [http://linux.die.net/man/1/ffmpeg довідки ffmpeg] описують параметри так, як вказано нижче.")
    (Updating to match new version of source page)
    Line 1: Line 1:
    <languages/>
    <languages/>
    <div class="mw-translate-fuzzy">
    == Параметри профілю обробки — як їх читати ==
    == Параметри профілю обробки — як їх читати ==
    </div>


    ===Параметри профілю обробки — як їх читати — версія 0.9.10 ===
    ===Параметри профілю обробки — як їх читати — версія 0.9.10 ===
    Line 109: Line 111:
    See also [https://forum.kde.org/viewtopic.php?f=272&t=124869#p329129 HOWTO Produce 4k and 2K videos, YouTube compatible]
    See also [https://forum.kde.org/viewtopic.php?f=272&t=124869#p329129 HOWTO Produce 4k and 2K videos, YouTube compatible]


    <div class="mw-translate-fuzzy">
    {{Prevnext2
    {{Prevnext2
    | prevpage=Special:MyLanguage/Kdenlive/Manual/Rendering | nextpage=Special:MyLanguage/Kdenlive/Manual/Capturing
    | prevpage=Special:MyLanguage/Kdenlive/Manual/Rendering | nextpage=Special:MyLanguage/Kdenlive/Manual/Capturing
    Line 114: Line 117:
    | index=Special:MyLanguage/Kdenlive/Manual | indextext=Повернутися до меню
    | index=Special:MyLanguage/Kdenlive/Manual | indextext=Повернутися до меню
    }}
    }}
    </div>


    [[Category:Kdenlive/uk]]
    [[Category:Kdenlive/uk]]

    Revision as of 08:23, 24 July 2019

    Other languages:

    Параметри профілю обробки — як їх читати

    Параметри профілю обробки — як їх читати — версія 0.9.10

    У версії 0.9.10 параметри профілю обробки було значно змінено.


    Kdenlive now makes use of "property presets" delivered by the melt project (see melt doco). These presets are referenced by the properties=<preset> syntax. In the example illustrated, the render profile is referencing lossless/H.264. This refers to a property preset found in file H.264 found on the system at /usr/share/mlt/presets/consumer/avformat/lossless.

    All the <presets> referenced in the render settings in Kdenlive will be referring to presets found at /usr/share/mlt/presets/consumer/avformat/ (on a default install). Note that you reference presets found in subdirectories of this folder using a <dirname>/<profile> syntax as shown in the example above.

    properties=lossless/H.264 
    g=120 
    crf=%quality 
    ab=%audiobitrate+'k'
    

    The preset files found at /usr/share/mlt/presets/consumer/avformat/ are simple text files that contain the melt parameters that define the rendering. An example is shown below. These are the same parameters that were used in earlier versions of Kdenlive — see next section for how to read those.

    Contents of lossless/H.264:

    f=mp4
    acodec=aac
    ab=384k
    vcodec=libx264
    intra=1
    vb=0
    g=0
    bf=0
    preset=medium
    qscale=1
    qp=0
    coder=ac
    
    meta.preset.extension=mp4
    meta.preset.note=Intra-frame only, lossless compressed MPEG-4 AVC with AAC audio
    

    Render Profile Parameters - How to read them - earlier versions of Kdenlive

    The parameters that go into a render profile derive from the ffmpeg program.

    This is a worked example to show how you can understand what these parameters mean using the ffmpeg documentation.

    У наведеному вище прикладі параметрами є

    f=dvd 
    vcodec=mpeg2video 
    acodec=mp2  
    b=5000k 
    maxrate=8000k 
    minrate=0 
    bufsize=1835008 
    mux_packet_s=2048 
    mux_rate=10080000 
    ab=192k 
    ar=48000 
    s=720x576 
    g=15 
    me_range=63 
    trellis=1 
    profile=dv_pal_wide 
    pass=2

    Дані з довідки ffmpeg описують параметри так, як вказано нижче.

    Основний параметр:

    -f fmt            force format

    Параметри відео:

    -vcodec codec     force video codec ('copy' to copy stream)
    -pass n           select the pass number (1 or 2)
    -b bitrate        set bitrate (in bits/s)
    -vb bitrate       set bitrate (in bits/s)
    -s size           set frame size (WxH or abbreviation)
    -me_range         <int>   E.V.. limit motion vectors range (1023 for DivX player)
    -trellis          <int>   E.VA. rate-distortion optimal quantization
    

    Параметри звуку:

    -acodec кодек    примусово встановити звуковий кодек (copy, якщо дані слід скопіювати)
    -ab bitrate       встановити бітову швидкість (у бітах/с)
    -ar частота          встановити частоту дискретизації (у Гц)
    

    Параметри звуку і відео AVCodecContext включають:

    -b                <int>   E.V.. set bitrate (in bits/s)
    -maxrate          <int>   E.V.. set max video bitrate tolerance (in bits/s)
    -minrate          <int>   E.V.. set min video bitrate tolerance (in bits/s)
    -g                <int>   E.V.. set the group of picture size
    

    So all the render profile options are documented here in the ffmpeg documentation.

    See also MLT doco on ConsumerAvFormat.

    See also HOWTO Produce 4k and 2K videos, YouTube compatible