Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
CHKZL committed Dec 14, 2024
1 parent eb2e9da commit ea5f700
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/DDTV_Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ jobs:
- name: Download ffmpeg.exe (Windows)
if: matrix.os == 'windows-latest'
run: |
mkdir Server/build_output/Plugins/Plugins/ffmpeg
mkdir Server/build_output/Plugins/ffmpeg
curl -L -o ffmpeg.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-win64-gpl.zip
tar -xf ffmpeg.zip --directory Server/build_output/Plugins/Plugins/ffmpeg --strip-components=1 ffmpeg-master-latest-win64-gpl/bin/ffmpeg.exe
tar -xf ffmpeg.zip --strip-components=1 -C Server/build_output/Plugins/ffmpeg ffmpeg-master-latest-win64-gpl/bin/ffmpeg.exe
- name: Move all files to bin folder and create shortcut (Linux or macOS)
if: runner.os != 'Windows'
Expand Down Expand Up @@ -354,9 +354,9 @@ jobs:
- name: Download ffmpeg.exe (Windows)
if: matrix.os == 'windows-latest'
run: |
mkdir Desktop/build_output/Plugins/Plugins/ffmpeg
mkdir Desktop/build_output/Plugins/ffmpeg
curl -L -o ffmpeg.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-win64-gpl.zip
tar -xf ffmpeg.zip --directory Desktop/build_output/Plugins/Plugins/ffmpeg --strip-components=1 ffmpeg-master-latest-win64-gpl/bin/ffmpeg.exe
tar -xf ffmpeg.zip --strip-components=1 -C Desktop/build_output/Plugins/ffmpeg ffmpeg-master-latest-win64-gpl/bin/ffmpeg.exe
- name: Copy VLC (Windows)
if: runner.os == 'Windows'
Expand Down Expand Up @@ -503,9 +503,10 @@ jobs:
- name: Download ffmpeg.exe (Windows)
if: matrix.os == 'windows-latest'
run: |
mkdir Client/build_output/Plugins/Plugins/ffmpeg
mkdir Client/build_output/Plugins/ffmpeg
curl -L -o ffmpeg.zip https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-win64-gpl.zip
tar -xf ffmpeg.zip --directory Client/build_output/Plugins/Plugins/ffmpeg --strip-components=1 ffmpeg-master-latest-win64-gpl/bin/ffmpeg.exe
tar -xf ffmpeg.zip --strip-components=1 -C Client/build_output/Plugins/ffmpeg ffmpeg-master-latest-win64-gpl/bin/ffmpeg.exe
- name: Move all files to bin folder and create shortcut (Windows)
if: runner.os == 'Windows'
Expand Down

0 comments on commit ea5f700

Please sign in to comment.