Tyrrrz/FFmpegBin

Add Linux `musl` builds

Open

#8 创建于 2025年2月12日

在 GitHub 查看
 (2 评论) (0 反应) (0 负责人)CMake (6 fork)github user discovery
enhancementhelp wanted

仓库指标

Star
 (49 star)
PR 合并指标
 (平均合并 3天 7小时) (30 天内合并 1 个 PR)

描述

Hi

Just want to point out some findings: If you run YoutubeExplode in a docker container based on alpine, you cannot use the linux binaries from this repo.

I guess it's because they are linked against the glibc linker: Some hints

So, you have to install ffmpeg the alpine linux way like: apk add ffmpeg in your Dockerfile like so:

FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine

USER root

WORKDIR /tmp

RUN apk -q update && apk add -q ffmpeg && rm -rf /var/cache/*

贡献者指南