Installing ffmpeg on CentOS 6.6 -


im trying install ffmpeg,.. when write comand:

git clone --depth 1 http://source.ffmpeg.org/git/ffmpeg.git 

i got error.. why??

initialized empty git repository in /root/ffmpeg_sources/ffmpeg/ffmpeg/.git/ fatal: dumb http transport not support --depth

installing source.. https://trac.ffmpeg.org/wiki/compilationguide/centos

it's because "dumb" http protocol doesn't support using --depth tag. need use git://:

git clone --depth 1 git://source.ffmpeg.org/ffmpeg 

more information here.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -