Skip to content

Commit f1e4368

Browse files
committed
Rename ffmpeg_encoder to ffmpeg-encoder
1 parent a7c3f09 commit f1e4368

11 files changed

Lines changed: 21 additions & 17 deletions

File tree

.github/actions/windows-recorder/action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ runs:
77
- name: Install dependencies
88
shell: powershell
99
run: |
10+
mkdir ffmpeg
11+
ls
1012
$VCINSTALLDIR = $(& "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" -latest -property installationPath)
1113
Add-Content $env:GITHUB_ENV "LIBCLANG_PATH=${VCINSTALLDIR}\VC\Tools\LLVM\x64\bin`n"
1214
Invoke-WebRequest "${env:FFMPEG_DOWNLOAD_URL}" -OutFile ffmpeg-release-full-shared.7z
15+
Push-Location ffmpeg
16+
ls
1317
7z x ffmpeg-release-full-shared.7z
14-
mkdir ffmpeg
15-
mv ffmpeg-*/* ffmpeg/
18+
ls
19+
Pop-Location
1620
Add-Content $env:GITHUB_ENV "FFMPEG_DIR=${pwd}\ffmpeg`n"
1721
Add-Content $env:GITHUB_PATH "${pwd}\ffmpeg\bin`n"
1822

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
members = [
33
"piano-layout",
44
"wgpu-jumpstart",
5-
"ffmpeg_encoder",
5+
"ffmpeg-encoder",
66
"neothesia",
77
"neothesia-ai",
88
"neothesia-cli",
@@ -27,7 +27,7 @@ neothesia-iced-widgets = { path = "./neothesia-iced-widgets" }
2727
midi-file = { path = "./midi-file" }
2828
midi-io = { path = "./midi-io" }
2929
piano-layout = { path = "./piano-layout" }
30-
ffmpeg_encoder = { path = "./ffmpeg_encoder" }
30+
ffmpeg-encoder = { path = "./ffmpeg-encoder" }
3131
nuon = { path = "./nuon" }
3232

3333
iced_graphics = { path = "./iced-graphics", features = ["image"] }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "ffmpeg_encoder"
2+
name = "ffmpeg-encoder"
33
version = "0.0.0"
44
edition = "2021"
55
readme = "README.md"
File renamed without changes.

0 commit comments

Comments
 (0)