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
Post a Comment