Added ffmpeg dependency install to linux appveyor pipeline.

This commit is contained in:
mjbudd77 2021-09-24 19:42:56 -04:00
parent 12183443bd
commit 374e8e7578
1 changed files with 9 additions and 5 deletions

View File

@ -90,11 +90,15 @@ echo 'Install Optional Dependency libx265-dev'
echo '****************************************'
sudo apt-get --assume-yes install libx265-dev
# Install scons
#echo '****************************************'
#echo 'Install Build Dependency scons'
#echo '****************************************'
#sudo apt-get --assume-yes install scons
# Install libav (ffmpeg)
echo '****************************************'
echo 'Install Optional Dependency libav (ffmpeg)'
echo '****************************************'
sudo apt-get --assume-yes install libavcodec-dev
sudo apt-get --assume-yes install libavformat-dev
sudo apt-get --assume-yes install libavutil-dev
sudo apt-get --assume-yes install libswscale-dev
sudo apt-get --assume-yes install libavresample-dev
# Install cppcheck
echo '****************************************'