Cheenis wrote: > Once I got my head around installing FFMPEG on my Synology DS210j NAS. > > For anybody with the same set up, make sure you log in as root (same > password as admin) when you use Putty to connect to your NAS via ssh > (google how to enable if you're struggling, it's simple) then by > following these posts by Cute Poison on the Synology forums: > > https://forum.synology.com/enu/viewtopic.php?f=37&t=89787 > http://forum.synology.com/wiki/index.php/Overview_on_modifying_the_Synology_Server,_bootstrap,_ipkg_etc > https://github.com/CutePoisonX/ffmpegInstaller/blob/master/README.md > > Fantastic work to everybody involved and thank you very much. > > Now I'm off to find the best possible feeds for BBC2,4 & 6 to put in my > presets - life in the fast lane! :)
OK, another possible solution. I tried to make sense of this script "https://github.com/CutePoisonX/ffmpegInstaller/blob/master/ffmpegInstaller.sh" but didn't really understand the need to move all the libs around and other stuff. In any case you have to go through getting ipkg on a Synology system first. All a bit messy. But in looking at how to get ipkg on latest Xpenology I stumbled across this: http://xpenology.com/forum/viewtopic.php?f=2&t=5156&p=30871&hilit=install+ipkg#p30871 ( You only need to follow the instructions up to point of editing path in /root/.profile) It lets you install QNAP packages on a Synology NAS assuming the architecture works for you. Both Arm ( not sure what variety ) and x86 http://qnapware.zyxmon.org/binaries-arm/Packages.html http://qnapware.zyxmon.org/binaries-x86/Packages.html Now the Xpenology that works in virtualbox is x86 and shows as a model DS3615xs. Following the instruction I have a working ffmpeg. This method installs the binary in the directory "/Apps/opt/bin/", ass LMS can't find this even when the directory is added to the, you still need a symlink in "/usr/bin/". Code: -------------------- DSMTEST> which ffmpeg /Apps/opt/bin/ffmpeg DSMTEST> /Apps/opt/bin/ffmpeg ffmpeg version 2.4.2 Copyright (c) 2000-2014 the FFmpeg developers built on Jan 10 2015 10:24:40 with gcc 4.8.3 (crosstool-NG 1.20.0) configuration: --enable-cross-compile --cross-prefix=i686-unknown-linux-gnu- --arch=i386 --target-os=linux --prefix=/Apps/opt --pkg-config=pkg-config --enable-shared --enable-static --enable-small --enable-pthreads --enable-zlib --disable-runtime-cpudetect --disable-doc --disable-debug --enable-gpl --enable-version3 --disable-altivec --disable-amd3dnow --disable-amd3dnowext --disable-mmx --disable-mmxext --disable-sse --disable-sse2 --disable-sse3 --disable-ssse3 --disable-sse4 --disable-sse42 --disable-avx --disable-xop --disable-fma3 --disable-fma4 --disable-avx2 --disable-vfp --disable-neon --disable-inline-asm --disable-yasm --disable-mipsdspr1 --disable-mipsdspr2 --disable-mipsfpu --disable-dxva2 --disable-vaapi --disable-vda --disable-vdpau --disable-outdevs libavutil 54. 7.100 / 54. 7.100 libavcodec 56. 1.100 / 56. 1.100 libavformat 56. 4.101 / 56. 4.101 libavdevice 56. 0.100 / 56. 0.100 libavfilter 5. 1.100 / 5. 1.100 libswscale 3. 0.100 / 3. 0.100 libswresample 1. 1.100 / 1. 1.100 libpostproc 53. 0.100 / 53. 0.100 Hyper fast Audio and Video encoder usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}... Use -h to get full help or, even better, run 'man ffmpeg' DSMTEST> cd /usr/bin DSMTEST> ls -l ffmpeg lrwxrwxrwx 1 root root 20 Feb 23 17:56 ffmpeg -> /Apps/opt/bin/ffmpeg DSMTEST> ps | grep "[f]fmepg" DSMTEST> ps | grep "[f]fmpeg" 30841 admin 48460 S /usr/bin/ffmpeg -loglevel quiet -i http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/uk/sbr_high/ak/bbc_radio_th DSMTEST> -------------------- Need volunteer to try this out on an arm based device. ------------------------------------------------------------------------ Krisbee's Profile: http://forums.slimdevices.com/member.php?userid=59080 View this thread: http://forums.slimdevices.com/showthread.php?t=103158 _______________________________________________ plugins mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/plugins
