FFMPEG使用

作者: OpenJetson | 来源:发表于2019-09-26 15:21 被阅读0次

    从MP4中提取hevc raw data.

    ffmpeg -i input.mp4 -c:v hevc -f hevc out.bin
    

    1.分离视频音频流

    ffmpeg -i input_file -vcodec copy -an output_file_video  //分离视频流 ffmpeg -i input_file -acodec copy -vn output_file_audio  //分离音频流
    

    2.视频解复用

    ffmpeg –i test.mp4 –vcodec copy –an –f m4v test.264
    ffmpeg –i test.avi –vcodec copy –an –f m4v test.264
    

    3.视频转码

    ffmpeg –i test.mp4 –vcodec h264 –s 352*278 –an –f m4v test.264
    //转码为码流原始文件
    ffmpeg –i test.mp4 –vcodec h264 –bf 0 –g 25 –s 352*278 –an –f m4v test.264
    //转码为码流原始文件
    ffmpeg –i test.avi -vcodec mpeg4 –vtag xvid –qsame test_xvid.avi
    //转码为封装文件
    //-bf B帧数目控制,-g 关键帧间隔控制,-s 分辨率控制
    

    4.视频封装

    ffmpeg –i video_file –i audio_file –vcodec copy –acodec copy output_file
    

    5.视频剪切

    ffmpeg –i test.avi –r 1 –f image2 image-%3d.jpeg //提取图片
    ffmpeg -ss 0:1:30 -t 0:0:20 -i input.avi -vcodec copy -acodec copy output.avi//剪切视频-r 提取图像的频率,-ss 开始时间,-t 持续时间
    

    6.视频录制

    ffmpeg –i rtsp://192.168.3.205:5555/test –vcodec copy out.avi
    

    7.YUV序列播放

    ffplay -f rawvideo -video_size 1920x1080 input.yuv
    

    8.YUV序列转AVI

    ffmpeg –s w*h –pix_fmt yuv420p –i input.yuv –vcodec mpeg4 output.avi
    
    1. ProRes Encoding
    ffmpeg -i [filenamefor_vid.mxf] -i [filenamefor_aud.mxf] -c:v prores_kostya -pix_fmt yuv444p10 -c:a copy outputFilename.mov
    ffmpeg -i seq_1920x1080_yuv422p10le.yuv -f rawvideo -s 1920x1080 -pix_fmt yuv422p10le -r 25 -c:v prores_ks -profile:v 3 -qscale:v 4 test.mov
    ffmpeg -i [filenamefor_vid.mxf] -i [filenamefor_aud.mxf] -c:v prores -profile:v X -c:a copyand replace the ‘X’ that follows ‘profile:v’ with the ProRes profile of your choice:outputFilename.mov
    0 = Proxy
    1 = LT
    2 = SQ (Default)
    3 = HQ
    

    10.H.264 Encoding

    ffmpeg -i [filenamefor_vid.mxf] -i [filenamefor_aud.mxf] -c:v libx264 -pix_fmt yuv420p -profile slow -crf 21 -ac 2 outputFilename.mp4
    ffmpeg -i [filenamefor_vid.mxf] -i [filenamefor_aud.mxf] -c:v libx264 -pix_fmt yuv420p -profile slow -crf 21 -ac 2 outputFilename.mp4
    

    常用参数说明:
    主要参数:
    -i 设定输入流
    -f 设定输出格式
    -ss 开始时间
    视频参数:
    -b 设定视频流量,默认为200Kbit/s
    -r 设定帧速率,默认为25
    -s 设定画面的宽与高
    -aspect 设定画面的比例
    -vn 不处理视频
    -vcodec 设定视频编解码器,未设定时则使用与输入流相同的编解码器
    音频参数:
    -ar 设定采样率
    -ac 设定声音的Channel数
    -acodec 设定声音编解码器,未设定时则使用与输入流相同的编解码器
    -an 不处理音频

    相关文章

      网友评论

        本文标题:FFMPEG使用

        本文链接:https://www.haomeiwen.com/subject/thqnuctx.html