Ubuntu下视频的处理
一 视频下载
很多实验数据会从YouTube上下载,我用的工具是youtube-dl
1 安装: sudo apt-get install youtube-dl 即可
2 配置使用:如果你已经翻墙,直接: youtube-dl http://www.youtube.com/watch?v=ksjfsjfslkjfskfjs 就可以;如果没有翻墙,可以在~/.bashrc中添加
http_proxy=http://xxx.xxx.xxx.xxx:yyyy
export http_proxy
xxx yyy分别是代理的IP和端口
二 视频处理
用的是非常强大的工具ffmpeg
1 安装
需要提前安装yasm,从网上下载安装包,然后
./configure
sudo make
sudo make install
同样的方法下载ffmpeg的安装包,安装
2 使用
常用基本命令:
2.1.分离视频音频流
ffmpeg -i input_file -vcodec copy -an output_file_video //分离视频流
ffmpeg -i input_file -acodec copy -vn output_file_audio //分离音频流
2.2.视频解复用
ffmpeg –i test.mp4 –vcodec copy –an –f m4v test.264
ffmpeg –i test.avi –vcodec copy –an –f m4v test.264
2.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 分辨率控制
2.4.视频封装
ffmpeg –i video_file –i audio_file –vcodec copy –acodec copy output_file
2.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 持续时间
2.6.视频录制
ffmpeg –i rtsp://192.168.3.205:5555/test –vcodec copy out.avi
2.7.YUV序列播放
ffplay -f rawvideo -video_size 1920x1080 input.yuv
2.8.YUV序列转AVI
ffmpeg –s w*h –pix_fmt yuv420p –i input.yuv –vcodec mpeg4 output.avi
常用参数说明:
主要参数:
-i 设定输入流
-f 设定输出格式
-ss 开始时间
视频参数:
-b 设定视频流量,默认为200Kbit/s
-r 设定帧速率,默认为25
-s 设定画面的宽与高
-aspect 设定画面的比例
-vn 不处理视频
-vcodec 设定视频编解码器,未设定时则使用与输入流相同的编解码器
音频参数:
-ar 设定采样率
-ac 设定声音的Channel数
-acodec 设定声音编解码器,未设定时则使用与输入流相同的编解码器
-an 不处理音频
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。