gacopl / dvmkv2mp4

Convert any Dolby Vision/HDR10+ MKV to DV MP4 that runs on many devices
198 stars 36 forks source link

MP4BOX v1.0.1 install issue #32

Closed CitizenDev closed 1 year ago

CitizenDev commented 1 year ago

Hi.

this seems to not work any more.

git clone --depth 1 https://github.com/gpac/gpac.git gpac_public
cd gpac_public
git checkout v1.0.1 

error: pathspec 'v1.0.1' did not match any file(s) known to git

CitizenDev commented 1 year ago

It is related to commit 15004a3 git checkout v1.0.1 for gpac will not work with --depth 1

OnlineArts commented 1 year ago

That's right, but the whole command is unnecessary:

git clone --depth 1 --branch v1.0.1 https://github.com/gpac/gpac.git gpac_public
cd gpac_public

works like charm. I'll create a new merge request