ffmpeg常用命令

2022-07-12 06:12:07 字數 1390 閱讀 2898

ffmpeg 常用命令記錄

ffmpeg官網

錄屏ffmpeg -f -i -r out.yuv   e.g. ffmpeg -f gdigrab -i "desktop" out.yuv

ffmpeg -i test.mp4 -vcodec copy -acodec copy out.flv   只是換了乙個封裝格式

ffmpeg -i test.mp4 -vn -acodec copy out.aac  提取音訊

ffmpeg -i test.mp4 -an -c:v rawvideo -pix_fmt yuv420p out.yuv   //rawvideo 是乙個encoder, -pix_fmts 能檢視所有的format, -pix_fmt 設定format

ffmpeg -i test.mp4 -vn -ar 44100 -ac 2 -f s16le out.pcm   // -ar 為audio sampling frequency, -ac audio channel number 

ffplay -ar 44100 -ac 2 -f s16le out.pcm

濾鏡相關

ffmpeg -i test.mp4 -vf crop=in_w-100:in_h-100 -c:v libx264 -c:a copy out.mp4  //crop , -vf stands for videofilter, 

ffmpeg -i test.mp4 -vf crop=100:100 -c:v libx264 -c:a copy out.mp4

時間裁剪相關

input.txt 如下

file 'test.mp4'

file 'out.mp4'

ffmpeg -i test.mp4 -r 1 -f image2 image-%3d.jpeg

ffmpeg -i image-%3d.jpeg -r 10 outt.mp4  -r是frame rate

ffplay rtmp: // 拉流測試

ffmpeg常用命令

root localhost video 1 ffprobe show streams sh mp4 輸出太多,我這裡就不貼出來了 ffprobe version the ffmpeg developers 2.轉碼mp4轉ts root localhost ffmpeg i video 1 sh....

ffmpeg命令 抓屏 FFmpeg 常用命令

轉換格式 轉換為 mp4 格式 ffmpeg i input.mov output.mp4 i 輸入檔案 指定規格引數 ffmpeg i input.mp4 c v libx264 preset slow crf 18 c a aac b a 128k pix fmt yuv420p output....

ffmpeg常用命令介紹

git clone ffmpeg解壓即用,建議將ffmpeg和ffprobe加入bin目錄全域性使用。基本語法格式 ffmpeg global options h,help,help arg 顯示幫助 version 顯示版本資訊 formats 顯示所有有效的格式 包括裝置 decoders 顯示...