Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

H.264 tar balls are no longer updated in https://download.videolan.org/pub/videolan/x264/snapshots #333

Open
brycechesternewman opened this issue Mar 29, 2022 · 0 comments

Comments

@brycechesternewman
Copy link

brycechesternewman commented Mar 29, 2022

According to this issue https://code.videolan.org/videolan/x264/-/issues/8 H.264 tar balls are no longer updated in https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20191218-README.txt.

Locally I have updated to use https://code.videolan.org/videolan/x264/-/archive/stable/x264-stable.tar.bz2. FFmpeg 5.0 was compiled with r3060 "264 - core 163 r3060 5db6aa6 - H.264/MPEG-4 AVC codec - Copyleft 2003-2021 - http://www.videolan.org/x264.html".

The proposed change is below, but I can't see how to use a specific version, but that may not matter. I can put in a pull request for this but wanted to feedback before I make this change to use the proposed new tar ball location for the Dockerfiles...

RUN \
        DIR=/tmp/x264 && \
        mkdir -p ${DIR} && \
        cd ${DIR} && \
        curl -sL https://code.videolan.org/videolan/x264/-/archive/stable/x264-stable.tar.bz2 | \
        tar -jx --strip-components=1 && \
        ./configure --prefix="${PREFIX}" --enable-shared --enable-pic --disable-cli && \
        make && \
        make install && \
        rm -rf ${DIR}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant