documentation icon indicating copy to clipboard operation
documentation copied to clipboard

No docummentation on how to install dependencies not already packaged by Bottles(FFmpeg)

Open formlessdao opened this issue 1 year ago • 4 comments

How do I install FFmpeg as the dependency for another software I use? It uses it to do some transcoding.

I want to run an app named Subtitle Edit that's used to make subtitles.

The app is open source and even has somewhat of a guide how to install on Linux using Mono but I'm sure we have a better chance to make it run better under bottles.

https://www.nikse.dk/subtitleedit/help The following are the dependencies for Linux if installed using Mono; Packages required for Ubuntu based distros:

sudo apt-get install mono-complete
sudo apt-get install libhunspell-dev
sudo apt-get install libmpv-dev (libmpv.so)
sudo apt-get install tesseract-ocr
sudo apt-get install vlc (already installed on some distros, SE uses (libvlc.so))
sudo apt-get install ffmpeg (already installed on some distros)

Packages required for Arch based distros (like Manjaro):

sudo pacman -S mono
sudo pacman -S mpv
sudo pacman -S hunspell
sudo pacman -S ttf-dejavu (Unicode font)
sudo pacman -S tesseract
sudo pacman -S tesseract-data-eng (or install via "sudo mono SubtitleEdit.exe")

formlessdao avatar Sep 20 '22 11:09 formlessdao