File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626 os :
2727 - windows-latest
2828 - ubuntu-latest
29+ - ubuntu-24.04-arm
2930 - macos-13
3031 - macos-14 # Mac M1 (ARM64)
3132
Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ pub fn ffmpeg_download_url() -> Result<&'static str> {
3333 Ok ( "https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-essentials.zip" )
3434 } else if cfg ! ( all( target_os = "linux" , target_arch = "x86_64" ) ) {
3535 Ok ( "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz" )
36+ } else if cfg ! ( all( target_os = "linux" , target_arch = "aarch64" ) ) {
37+ Ok ( "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-arm64-static.tar.xz" )
3638 } else if cfg ! ( all( target_os = "macos" , target_arch = "x86_64" ) ) {
3739 Ok ( "https://evermeet.cx/ffmpeg/getrelease/zip" )
3840 } else if cfg ! ( all( target_os = "macos" , target_arch = "aarch64" ) ) {
You can’t perform that action at this time.
0 commit comments