zoukankan      html  css  js  c++  java
  • shell脚本实现 视频格式转换 ffmpeg 实现视频转换

    #!/bin/bash
    
    
    original=$1
    echo $original
    
    # check whether file is exist
    #   if $original de chang du wei 0  huo bu $original bu shi chang gui wenjian 
    if [ -z $original ] || [ ! -f $original ]; then
        echo "file $original not exist!"
        exit
    fi
    
    # check whether file is end of '.mp4' or whether it is h264 encodeing.
    # 显示 以 .mp4结尾的文件名字或者 h264编码的文件名字  不需要转换的啊
    if [ -n "`echo $1 | sed -n /.mp4$/p`" ] && [ `ffprobe -show_streams $1 | grep "codec_name=h264"` ]; then
        echo "Don't need convert!"
    else 
        target=${original%.*}.mp4   #截取文件最长的字符串,比如 文件的名字是  a.html.dds.dd.ddedeers.sd.date.mp4,  在这里值截取   .mp4 以前的字符为target
        tmp=${original%.*}`date +%N`.mp4   # 文件的临时名字
        ffmpeg -i $original -vcodec libx264 -acodec libfaac  -vpre slow  -vpre baseline  -qscale 4 -y  $tmp
        rm $original
        mv $tmp $target
    fi
  • 相关阅读:
    21 情态动词
    20 动词的用法
    19 完成时/现在完成时和过去完成时的区别
    18 将来时
    17 一般过去时和过去进行时
    16 一般现在时和现在进行时
    15 There / Here be句型
    14 不定量表达法
    13 副词
    12 形容词
  • 原文地址:https://www.cnblogs.com/xuchunlin/p/5915844.html
Copyright © 2011-2022 走看看