mirror of
https://github.com/asapach/peerflix-server.git
synced 2026-04-25 14:45:50 +03:00
[GH-ISSUE #122] Missing ffmpeg in docker image #320
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @pryg-skok on GitHub (Sep 13, 2017).
Original GitHub issue: https://github.com/asapach/peerflix-server/issues/122
Hi,
FFmpeg is missing in Docker image, so query params like ffmpeg=remux is not working here.
@asapach commented on GitHub (Sep 13, 2017):
Yeah, it's an experimental feature, so I didn't think it would make sense to add it to Dockerfile. You can try adding it yourself by following these instructions: https://github.com/fluent-ffmpeg/node-fluent-ffmpeg#ffmpeg-and-ffprobe
If that works out, a PR is welcome.
@pryg-skok commented on GitHub (Sep 14, 2017):
I've created simple PR.
Also it's not clear of how to permanently store torrents.json file from container.
And for now I've solved with couple lines in dockerfile:
And container starts with option:
-v /path/to/torrents.json:/home/app/.config/peerflix-server/torrents.jsonbut maybe there is a better way? Maybe it can be configureable?
@asapach commented on GitHub (Sep 14, 2017):
Thanks.
I think it would be better to mount
/home/app/.config/peerflix-serverfolder, because it can also haveconfig.jsonin it:You can send a PR for
Docker.mdif you want.How do you suggest making it more configurable?