Tina系統(tǒng)鏡像里已經(jīng)編譯了FFmpeg軟件包,可以使用FFmpeg進行視頻播放。如果自行編譯話,用默認(rèn)配置編譯tina系統(tǒng)鏡像也是有ffmpeg的。
下面我們簡單了解一下ffmpeg
FFmpeg簡介
FFmpeg(Fast Forward Mpeg)是一個強大的音視頻,處理、推流、播放的開源軟件。FFmpeg在Linux平臺下開發(fā),但它同樣也可以在其它操作系統(tǒng)環(huán)境中編譯運行,包括Windows、Mac OS X等。現(xiàn)在絕大多數(shù)音視頻處理軟件,播放器,攝像頭推流,都是基于ffmpeg開發(fā)的。
FFmpeg命令行使用格式
FFmpeg 的命令行參數(shù)可以分成五個部:
$ ffmpeg {1} {2} -i {3} {4} {5}
- 全局參數(shù)
- 輸入文件參數(shù)
- 輸入文件
- 輸出文件參數(shù)
- 輸出文件
先help 一下:
root@MaixLinux:/mnt/UDISK# ffmpeg -h
ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 8.1.0 (C-SKY RISCV Tools V1.8.4 B20200702)
configuration: --enable-cross-compile --cross-prefix=riscv64-unknown-linux-gnu- --arch=riscv --cpu=c910 --target-os=linux --prefix=/usr --pkg-config=pkg-config --enable-shared --enable-static --enable-pthreads --enable-zlib --disable-doc --disable-debug --disable-lzma --disable-vaapi --disable-vdpau --enable-outdev=fbdev --enable-outdev=alsa --enable-outdev=v4l2 --disable-outdev=sdl2 --disable-x86asm --enable-small --enable-gpl --enable-libx264
libavutil 56. 51.100 / 56. 51.100
libavcodec 58. 91.100 / 58. 91.100
libavformat 58. 45.100 / 58. 45.100
libavdevice 58. 10.100 / 58. 10.100
libavfilter 7. 85.100 / 7. 85.100
libswscale 5. 7.100 / 5. 7.100
libswresample 3. 7.100 / 3. 7.100
libpostproc 55. 7.100 / 55. 7.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...
Getting help:
-h -- print basic options
-h long -- print more options
-h full -- print all options (including all format and codec specific options, very long)
-h type=name -- print all options for the named decoder/encoder/demuxer/muxer/filter/bsf/protocol
See man ffmpeg for detailed description of the options.
Print help / information / capabilities:
-L show license
-h topic show help
-? topic show help
-help topic show help
--help topic show help
-version show version
-buildconf show build configuration
-formats show available formats
-muxers show available muxers
-demuxers show available demuxers
-devices show available devices
-codecs show available codecs
-decoders show available decoders
-encoders show available encoders
-bsfs show available bit stream filters
-protocols show available protocols
-filters show available filters
-pix_fmts show available pixel formats
-layouts show standard channel layouts
-sample_fmts show available audio sample formats
-colors show available color names
-sources device list sources of the input device
-sinks device list sinks of the output device
-hwaccels show available HW acceleration methods
Global options (affect whole program instead of just one file):
-loglevel loglevel set logging level
-v loglevel set logging level
-report generate a report
-max_alloc bytes set maximum size of a single allocated block
-y overwrite output files
-n never overwrite output files
-ignore_unknown Ignore unknown stream types
-filter_threads number of non-complex filter threads
-filter_complex_threads number of threads for -filter_complex
-stats print progress report during encoding
-max_error_rate maximum error rate ratio of errors (0.0: no errors, 1.0: 100% errors) above which ffmpeg returns an error instead of success.
-bits_per_raw_sample number set the number of bits per raw sample
-vol volume change audio volume (256=normal)
Per-file main options:
-f fmt force format
-c codec codec name
-codec codec codec name
-pre preset preset name
-map_metadata outfile[,metadata]:infile[,metadata] set metadata information of outfile from infile
-t duration record or transcode "duration" seconds of audio/video
-to time_stop record or transcode stop time
-fs limit_size set the limit file size in bytes
-ss time_off set the start time offset
-sseof time_off set the start time offset relative to EOF
-seek_timestamp enable/disable seeking by timestamp with -ss
-timestamp time set the recording timestamp ('now' to set the current time)
-metadata string=string add metadata
-program title=string:st=number... add program with specified streams
-target type specify target file type ("vcd", "svcd", "dvd", "dv" or "dv50" with optional prefixes "pal-", "ntsc-" or "film-")
-apad audio pad
-frames number set the number of frames to output
-filter filter_graph set stream filtergraph
-filter_script filename read stream filtergraph description from a file
-reinit_filter reinit filtergraph on input parameter changes
-discard discard
-disposition disposition
Video options:
-vframes number set the number of video frames to output
-r rate set frame rate (Hz value, fraction or abbreviation)
-s size set frame size (WxH or abbreviation)
-aspect aspect set aspect ratio (4:3, 16:9 or 1.3333, 1.7777)
-bits_per_raw_sample number set the number of bits per raw sample
-vn disable video
-vcodec codec force video codec ('copy' to copy stream)
-timecode hh:mm:ss[:;.]ff set initial TimeCode value.
-pass n select the pass number (1 to 3)
-vf filter_graph set video filters
-ab bitrate audio bitrate (please use -b:a)
-b bitrate video bitrate (please use -b:v)
-dn disable data
Audio options:
-aframes number set the number of audio frames to output
-aq quality set audio quality (codec-specific)
-ar rate set audio sampling rate (in Hz)
-ac channels set number of audio channels
-an disable audio
-acodec codec force audio codec ('copy' to copy stream)
-vol volume change audio volume (256=normal)
-af filter_graph set audio filters
Subtitle options:
-s size set frame size (WxH or abbreviation)
-sn disable subtitle
-scodec codec force subtitle codec ('copy' to copy stream)
-stag fourcc/tag force subtitle tag/fourcc
-fix_sub_duration fix subtitles duration
-canvas_size size set canvas size (WxH or abbreviation)
-spre preset set the subtitle options to the indicated preset
可以得知一些基本信息:
ffmpeg版本:
version 4.3.1
built with gcc版本:8.1.0 (C-SKY RISCV Tools V1.8.4 B20200702)
configuration平臺庫等信息:
平臺 :?
--enable-cross-compile
--cross-prefix=riscv64-unknown-linux-gnu- --arch=riscv --cpu=c910
--target-os=linux --prefix=/usr --pkg-config=pkg-
config庫:
--enable-shared --enable-static --enable-pthreads --enable-zlib
--disable-doc --disable-debug --disable-lzma --disable-vaapi
--disable-vdpau -
視頻輸出設(shè)備:
-enable-outdev=fbdev
音頻輸出設(shè)備:
--enable-outdev=alsa
支持解碼格式:
--enable-outdev=v4l2 --disable-outdev=sdl2 --disable-x86asm --enable-small --enable-gpl --enable-libx264
FFmpeg命令行參數(shù):
-c:指定編碼器
-i :? 輸入音視源
-c copy:直接復(fù)制,不經(jīng)過重新編碼(這樣比較快)
-c:v:指定視頻編碼器
-c:a:指定音頻編碼器
-i:指定輸入文件
-an:去除音頻流
-vn:去除視頻流-vf :? 視頻濾鏡
-pix_fmt : 視頻格式
-preset:指定輸出的視頻質(zhì)量,會影響文件的生成速度,有以下幾個可用的值 ultrafast, superfast, veryfast,
faster, fast, medium, slow, slower, veryslow。-y:
不經(jīng)過確認(rèn),輸出時直接覆蓋同名文件。
..................
ffmpeg的東西太多了, 詳細(xì)說明的,得寫好幾百篇稿, 也說不完
用到哪, 說到哪
播放一個視頻試試吧
視頻播放測試
播放例程所用的BadApple測試視頻
播放一個視頻試試吧
傳視頻到開發(fā)板
scp badapple_480360_xvid.mp4 root@192.168.0.20:/mnt/UDISK
注未擴容的,用不到上面空間, 可以用wget, 在網(wǎng)上找到視頻下載
擴容方法,上幾節(jié)有講
【平頭哥Sipeed LicheeRV 86開發(fā)板試用】SD卡中Linux系統(tǒng)根root分區(qū)擴容
【平頭哥Sipeed LicheeRV 86開發(fā)板試用】擴展外部sd卡存儲找到失去空間
播放視頻
ffmpeg -i badapple_480360_xvid.mp4 -pix_fmt bgra -f fbdev /dev/fb0 -f alsa hw:0,0
發(fā)現(xiàn)播放效果不好看好,可不可以使畫面居中一下,上下可以留黑邊,這里用到pad參數(shù)填充,(發(fā)現(xiàn)一下算法視頻播放就會變卡):
ffmpeg -i badapple_480360_xvid.mp4 -pix_fmt bgra -vf pad='w=480:h=480:x=(ow-iw)/2:y=(oh-ih)/2' -f fbdev /dev/fb0 -f alsa hw:0,0
再一個小(大)一點的視頻試試
ffmpeg -i mov_bbb.mp4 -pix_fmt bgra -f fbdev /dev/fb0 -f alsa hw:0,0
用上面方法居中一下
ffmpeg -i mov_bbb.mp4 -pix_fmt bgra -vf 'pad=480:480:0:(oh-ih)/2' -f fbdev /dev/fb0 -f alsa hw:0,0
效果還是不好, 可以讓它按屏寬度拉伸一下,并居中呢
用參數(shù)scale=480:-1, ??寬度480, 高度按比例縮放,試試下面命令:
ffmpeg -i mov_bbb.mp4 -pix_fmt bgra -vf 'scale=480:-1, pad=480:480:0:(oh-ih)/2' -f fbdev /dev/fb0 -f alsa hw:0,0
這樣理想了。
播放自制的視頻
比較大的在上面播放比較卡,可以用ffmpeg, l轉(zhuǎn)碼,縮小一些
寬度固定轉(zhuǎn)文件
ffmpeg -i /mnt/UDISK/jueju.mp4??-preset ultrafast -pix_fmt bgra -vf 'scale = 480:-1' -f mp4 /mnt/UDISK/jju.mp4復(fù)制代碼用轉(zhuǎn)碼文件播放出來,就不會卡,居中會卡
播放電視直播
找一個電視直播的視頻源,板子連網(wǎng)之后可以查看電視直播:
ffmpeg?-i?http://183.207.249.6/PLTV/3/224/3221225534/index.m3u8?-pix_fmt?bgra?-vf?'scale?=?480:-1,?pad?=?480:480:(ow-iw)/2:(oh-ih)/2'?-f?fbdev?/dev/fb0?-f?alsa?hw:0,0
播放畫面如下,雖然能播,但是畫面非常的卡。
總結(jié)
上述我們體驗了Sipeed LicheeRV86 Panel開發(fā)板使用FFmpeg進行視頻播放和視頻處理(轉(zhuǎn)碼)的能力,對于播放480x480以下的視頻,畫面和聲音都比較流程,轉(zhuǎn)碼非常慢,如果使用了FFmpeg的縮放或填充算法,播放就會不同程度的變卡。D1的解碼及流處理能力相對X86, ARMV7以上內(nèi)核還是差不少的。