Emby ffmpeg
Emby ffmpeg
I am installing Emby (http://emby.media) on my debain server It is asking for ffmpeg and giving me a download link, i downloaded it and it is saying it cant find it ffmpg file path as viewed over ssh from my mac: seadragon@SeaDragon:~/ffmpeg$ ls -la total 173208 drwx------ 3 seadragon seadragon 4096 Oct 17 19:46 . drwxr-xr-x 3 seadragon seadragon 4096 Oct 17 19:14 .. -rwxrwxr-x 1 seadragon seadragon 45064304 Oct 14 21:50 FFmpeg -rwxrw-r-- 1 seadragon seadragon 46256112 Oct 14 21:57 ffmpeg-10bit -rwxrw-r-- 1 seadragon seadragon 44973872 Oct 14 21:50 FFprobe -rwxrw-r-- 1 seadragon seadragon 40266776 Oct 14 21:50 ffserver -rwxrw-r-- 1 seadragon seadragon 35147 Oct 14 21:57 GPLv3.txt drwx------ 2 seadragon seadragon 4096 Oct 14 21:53 manpages -rwxrw-r-- 1 seadragon seadragon 742472 Oct 14 21:50 qt-faststart -rwxrw-r-- 1 seadragon seadragon 2701 Oct 14 21:57 readme.txt ffmpeg file path as viewed over smb from my mac https://goo.gl/photos/QqsZPEw2cuq4Lfn26 emby web setup: https://goo.gl/photos/HCStVM52gdWwM3oM7 emby web setup error: https://goo.gl/photos/iKZ28iH8FZ3smpty8 any ideas whats wrong? I tried capitalizing the f's like in the web setup and I tried everything lowercase
Store ffmpeg files in a more accessible directory (like /bin or /usr/bin) so Emby can recognize them. However, it's better to use your distribution's ffmpeg: sudo apt install ffmpeg. This installs the correct version, dependencies, and places files properly. Emby should then detect it.
Seadragon@SeaDragon installed ffmpeg via package manager. Attempt to build dependencies failed as ffmpeg isn't available through the current sources.
Debian requires additional references to complete this task. Ubuntu provides these easily. Per Debian's documentation, for the latest Debian versions (Jessie/8.x), modify your /etc/apt/sources.list. Append the backports repository: deb (Debian URL) jessie-backports main. If your primary list is deb http://ftp.ca.debian.org/debian jessie main contrib, insert this after the existing line: deb http://ftp.ca.debian.org/debian jessie main contrib deb http://ftp.ca.debian.org/debian jessie-backports main. Save the file and run an update before installing: # sudo apt update ... # sudo apt install ffmpeg
this will function? GNU nano 2.2.6 File: /etc/apt/sources.list Modified # deb cdrom:[Debian GNU/Linux 8.5.0 _Jessie_ - Official amd64 NETINST Binary-1 20160604-15:31]/ jessie main #deb cdrom:[Debian GNU/Linux 8.5.0 _Jessie_ - Official amd64 NETINST Binary-1 20160604-15:31]/ jessie main deb http://ftp.us.debian.org/debian/ jessie main deb-src http://ftp.us.debian.org/debian/ jessie main deb http://security.debian.org/ jessie/updates main deb-src http://security.debian.org/ jessie/updates main #jessie-updates, previously known as 'volatile' deb http://ftp.us.debian.org/debian/ jessie-updates main deb-src http://ftp.us.debian.org/debian/ jessie-updates main #CUSTOM ADDITION deb http://ftp.ca.debian.org/debian jessie main contrib deb http://ftp.ca.debian.org/debian jessie-backports main ^G Get Help ^O WriteOut ^R Read File ^Y Prev Page ^K Cut Text ^C Cur Pos ^X Exit ^J Justify ^W Where Does ^V Appear ^U Removed Text ^T To Spell
It should function. But because you're in the US, use the US mirrors: deb http://ftp.us.debian.org/debian/ jessie-backports main. You may find a closer mirror when accessing the backports repo. Also, you don't require the initial custom addition. This was only an illustration for demonstrating the second addition (to align with the mirror URL).