zoukankan      html  css  js  c++  java
  • FFmpeg Scaler Options

    算法              帧率 图像主观感受
    SWS_FAST_BILINEAR 228 图像无明显失真,感觉效果很不错。
    SWS_BILINEAR      95  感觉也很不错,比上一个算法边缘平滑一些。
    SWS_BICUBIC       80  感觉差不多,比上上算法边缘要平滑,比上一算法要锐利。
    SWS_X             91  与上一图像,我看不出区别。
    SWS_POINT         427 细节比较锐利,图像效果比上图略差一点点。
    SWS_AREA          116 与上上算法,我看不出区别。
    SWS_BICUBLIN      87  同上。
    SWS_GAUSS         80  相对于上一算法,要平滑(也可以说是模糊)一些。
    SWS_SINC          30  相对于上一算法,细节要清晰一些。
    SWS_LANCZOS       70  相对于上一算法,要平滑(也可以说是模糊)一点点,几乎无区别。
    SWS_SPLINE        47  和上一个算法,我看不出区别。
    
    sws_flags Set the scaler flags. It accepts the following values:
    fast_bilinear     Select fast bilinear scaling algorithm.
    bilinear          Select bilinear scaling algorithm.
    bicubic           Select bicubic scaling algorithm.
    experimental      Select experimental scaling algorithm.
    neighbor          Select nearest neighbor rescaling algorithm.
    area              Select averaging area rescaling algorithm.
    bicublin          Select bicubic scaling algorithm for the luma component, bilinear for chroma components.
    gauss             Select Gaussian rescaling algorithm.
    sinc              Select sinc rescaling algorithm.
    lanczos           Select Lanczos rescaling algorithm.
    spline            Select natural bicubic spline rescaling algorithm.
    print_info        Enable printing/debug logging.
    accurate_rnd      Enable accurate rounding.      <--- 用这个算法时 gif 动态图大小最小.
    full_chroma_int   Enable full chroma interpolation.
    full_chroma_inp   Select full chroma input.
    bitexact          Enable bitexact output.
    
  • 相关阅读:
    postgresql 9.x stream status check
    postgresql 物理备份 tar 命令
    centos 6.8 + postgresql 9.6 + yum 的一些路径
    debian8.2 + postgresql 9.1 + apt-get 的一些路径
    window 2012 上安装 sql server 2005 出错的解决方案
    postgresql 计算时间差的秒数
    centos 6.8 + postgresql 9.6 + pgagent
    postgresql 9.1 查看表和索引的大小
    centos 6.8 + postgresql 9.6 + pg_stat_statements
    centos 6.8 + postgresql 9.6 + file_fdw
  • 原文地址:https://www.cnblogs.com/nlsoft/p/6534708.html
Copyright © 2011-2022 走看看