mirror of
https://github.com/HaschekSolutions/pictshare.git
synced 2026-04-25 15:05:56 +03:00
[GH-ISSUE #111] ffmpeg binary included #87
Labels
No labels
Feature request
Feature request
bug
cant reproduce
enhancement
help wanted
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/pictshare#87
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 @sneak on GitHub (Mar 6, 2020).
Original GitHub issue: https://github.com/HaschekSolutions/pictshare/issues/111
There is an ffmpeg binary in
bin. Without decompiling it, how am I to know it is safe to use? For this reason I have to stop using the project - it would be better to use system ffmpeg and simply add a mention that it needs to be installed in theREADME(and install it in theDockerfile).@geek-at commented on GitHub (Mar 6, 2020):
As stated in the INSTALL.md the binary is from https://www.johnvansickle.com/ffmpeg/ and you can check the hashes to verify it's not modified.
But of course you can link your own binary (like the one on your system) using the CONFIG setting
FFMPEG_BINARYwhich is the absolute path to your own binary. This is actually used in the Docker container because the provided binary is only for x64 CPUs and the Docker image for ARM will use the locally installed ffmpeg (if available)