From 48154d0c3c27b337355a184cb25fc8d0e30800d9 Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Wed, 10 Nov 2021 10:52:33 +1300 Subject: [PATCH] Update URL for x264 #1860 (#1861) * Update URL for x264 #1860 * Use Ubuntu-latest in Pipelines (16.04 image removed from Pipelines) --- azure-pipelines.yml | 4 ++-- getffmpeg.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 24c377250..82d69f841 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,7 +10,7 @@ jobs: - job: 'Test' pool: - vmImage: 'Ubuntu-16.04' + vmImage: 'Ubuntu-latest' strategy: matrix: Python27: @@ -60,7 +60,7 @@ jobs: - job: 'Publish' dependsOn: 'Test' pool: - vmImage: 'Ubuntu-16.04' + vmImage: 'Ubuntu-latest' steps: - task: UsePythonVersion@0 diff --git a/getffmpeg.sh b/getffmpeg.sh index 2fb3a137f..f36e0486b 100755 --- a/getffmpeg.sh +++ b/getffmpeg.sh @@ -3,7 +3,7 @@ # get ffmpeg/yasm/x264 git clone git://source.ffmpeg.org/ffmpeg.git FFmpeg git clone git://github.com/yasm/yasm.git FFmpeg/yasm -git clone git://git.videolan.org/x264.git FFmpeg/x264 +git clone https://code.videolan.org/videolan/x264.git FFmpeg/x264 # compile/install yasm cd FFmpeg/yasm @@ -25,4 +25,4 @@ cd - cd FFmpeg ./configure --disable-asm --enable-libx264 --enable-gpl make install -cd - \ No newline at end of file +cd -