Skip to content

Commit

Permalink
Added Linux Arm
Browse files Browse the repository at this point in the history
  • Loading branch information
JPVenson committed Oct 2, 2024
1 parent 21e8e72 commit 31a1e80
Show file tree
Hide file tree
Showing 6 changed files with 2,893 additions and 91 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,17 @@ public void Configure(EntityTypeBuilder<FfmpegVersion> modelBuilder)
HashSha256 = "4f3eb2bf612e989d218a26c822d5d008cf3c4eafc54cf41e7816fc2eefc73d10",
HashMd5 = "bc6b6e09b2ec13871250f866e87952e8",
VersionGroup = FfmpegVersionConfig.MacVersionGroup,
},
new FfmpegVersion()
{
Id = new Guid("FE43005A-D480-4113-AF8A-8EBBC6392071"),
PlatformId = new Guid("EBE72964-459B-411E-A8DA-2FF77C7370E4"),
Source =
"https://repo.jellyfin.org/files/ffmpeg/linux/7.x/7.0.2-3/arm64/jellyfin-ffmpeg_7.0.2-3_portable_linuxarm64-gpl.tar.xz",
Version = "7.0.2-3",
HashSha256 = "e0e8fd50233578bc68db43b25f63984808c7604b7787b3a30d40aad66902daf8",
HashMd5 = "2ab051df11ff755b5b7f51937188e186",
VersionGroup = FfmpegVersionConfig.GenericLinuxVersionGroup,
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,17 @@ public void Configure(EntityTypeBuilder<Platform> modelBuilder)
Architecture = PlatformArchitecture.Amd64
},
new Platform()
{
Id = new Guid("EBE72964-459B-411E-A8DA-2FF77C7370E4"),
Name = "Linux Generic",
Type = PlatformType.Linux,
Version = "Linux",
VersionId = "Generic",
DisplayName = "Linux Generic",
Supported = true,
Architecture = PlatformArchitecture.Arm64
},
new Platform()
{
Id = new Guid("5AEA52AB-60BF-4425-B412-C046A60CCC83"),
Name = "MacOS",
Expand Down
Loading

0 comments on commit 31a1e80

Please sign in to comment.