zoukankan      html  css  js  c++  java
  • 神马16核的服务器你让我单线程跑ffmpeg

    周末了,也该把上周工作中用到的雕虫小技整理下,写成博客,也方便我以后查阅。

    最近需要用ffmpeg进行视频转码,考虑到ffmpeg这个工具本身支持多线程,而服务器也是多核的,想最大程度发挥服务器的计算能力。显然不能用单线程了,但是线程并不是越多越好,需要找到个平衡点。这就需要用time命令进行计时,并将该屏幕的输出重定向到文件,以便后期进行分析。

    ffmpeg编码的介绍网上有很多,我这里也有些示例(http://www.cnblogs.com/MikeZhang/archive/2012/07/17/videoCodec.html 的“三、视频编码工具 ”中有介绍)。今天主要介绍下ffmpeg的转码,以及time命令的重定向问题。

    假设我这里有个in.mp4的视频文件,分辨率为640*480,码率为580kbps,需要降低分辨率为320*240,降低码率为290kbps(这个参数和分辨率同时使用时不一定起作用,特别是中途退出时)。

    普通降低分辨率,码率的命令:

    ffmpeg -y -i in.mp4 -s 320x240 -b 290000 out290.mp4

    thread参数的命令:

    ffmpeg -y -threads 2 -i in.mp4 -s 320x240 -b 290000 out290.mp4

    这里用了两个线程。

    time统计时间的命令:

    time ffmpeg -y -threads 2 -i in.mp4 -s 320x240 -b 290000 out290.mp4

    输出重定向命令:

    (time ffmpeg -y -threads 2 -i in.mp4 -s 320x240 -b 290000 out290.mp4) 2>1.txt

    由于输出为标准出错,所以这里用2>1.txt

    当然也可使用如下命令:

    (time ffmpeg -y -threads 2 -i in.mp4 -s 320x240 -b 290000 out290.mp4) >& 1.txt

    为了同时在屏幕上输出,可以用tee命令。首先将标准出错重定向到标准输出,然后通过通道传给文件,命令如下:

    (time ffmpeg -y -threads 2 -i in.mp4 -s 320x240 out290.mp4) 2>&1 | tee 1.txt

    如果想测试下服务器到底支持多少个线程比较好,就需要写个脚本运行,我这里有一个,仅供参考:

    #! /bin/bash
    
    echo "Input num : "
    read num
    for (( i=1; i<=$num; i=i+1 ))
    do
            #(time ffmpeg -y -threads $i -i in.mp4 -s 320x240 -vcodec libx264 -vpre fast out290.mp4) >& $i.txt
            (time ffmpeg -y -threads $i -i in.mp4 -s 320x240 -vcodec libx264 -vpre fast out290.mp4) 2>&1 | tee $i.txt
    done

    好吧,启动脚本,让服务器飞一段时间,到时用tail命令看结果就是了。

    好,就这些了,希望对你有帮助。

  • E-Mail : Mike_Zhang@live.com
  • 转载请注明出处,谢谢!
查看全文
  • 相关阅读:
    Codeforces 1149 B
    Tenka1 Programmer Contest 2019 D
    BZOJ 1001 [BeiJing2006]狼抓兔子
    Codeforces 741 D
    HDU 5306 Gorgeous Sequence
    HDU 6521 Party
    Codeforces 912A/B
    Educational Codeforces Round 35 B/C/D
    Codeforces 902D/901B
    Codeforces 902B
  • 原文地址:https://www.cnblogs.com/MikeZhang/p/timeOutputRedirect20120916.html
  • Copyright © 2011-2022 走看看