Logo
Explore Help
Register Sign In
valknar/docker-compose
1
0
Fork 0
You've already forked docker-compose
Code Issues Pull Requests Actions Packages Projects Releases Wiki Activity
Files
45c14a2a145d760329962a417e1dffdc7e778dd2
docker-compose/stash/Dockerfile

16 lines
335 B
Docker
Raw Normal View History

feat: add ffmpeg to Filestash for video transcoding support Added custom Dockerfile to build Filestash with ffmpeg and ffprobe installed, enabling the built-in video transcoding plugin for seamless video playback. Changes: - Created stash/Dockerfile extending machines/filestash:latest - Installed ffmpeg package with apt-get - Updated stash/compose.yaml to build from Dockerfile - Video transcoding plugin will automatically detect ffmpeg presence This enables Filestash to transcode mov, mkv, avi, mpeg, and other video formats for in-browser playback without manual conversion. Note: Enable the video transcoding feature in Filestash admin panel at https://stash.pivoine.art/admin after deployment. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-06 20:09:34 +01:00
# Add ffmpeg to Filestash for video transcoding support
FROM machines/filestash:latest
USER root
# Install ffmpeg and ffprobe
RUN apt-get update && \
apt-get install -y --no-install-recommends \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
USER filestash
# Verify ffmpeg is installed
RUN ffmpeg -version && ffprobe -version
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.25.3 Page: 16ms Template: 1ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API