Kristaps Drozdovskis
Kristaps Drozdovskis

Reputation: 11

Installing ffmpeg on CentOS 6.6

Im trying to install ffmpeg,.. When I write comand:

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

I got this error.. why??

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

Installing from this source.. https://trac.ffmpeg.org/wiki/CompilationGuide/Centos

Upvotes: 1

Views: 793

Answers (1)

Brett McLain
Brett McLain

Reputation: 2010

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

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

More information here.

Upvotes: 2

Related Questions