Hi Daniel! 2012/11/12 Daniel Schade <[email protected]>: > i have compiled successfuly these packages : libaacplus-2.0.2 and > ocaml-aacplus-0.2.0 > > I want to transcode with these lines : > > #!/usr/bin/liquidsoap > > set("log.file.path","/tmp/liquidsoap.log") > set("log.stdout", true) > > url="http://localhost:8000/test-mp3" > input=mksafe(input.http(url)) > > output.icecast(%aacplus(channels=2,samplerate=44100,bitrate=64),mount="/aacp",host="localhost",port=8000,password="notset",input) > > To anyone has an idea? > > 2012/11/12 15:53:00 [dynamic.loader:3] Error while loading dynamic aacplus > encoder at /usr/local/lib/ocaml/3.12.1/aacplus > 2012/11/12 15:53:00 [dynamic.loader:3] Could not find dynamic module for > aacplus encoder.
If you manually compiled ocaml-aacplus, this error might be because liquidsoap is looking at the wrong place. What you can try is: * Find the path to the directory where ocaml-aacplus has been installed, say /path/to/aacplus * Start liquidsoap with: AACPLUS_DYN_PATH=/path/to/aacplus liquidsoap (...) This env variable will force liquidsoap to look for the module where you tell it to! Romain ------------------------------------------------------------------------------ Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Download 30-day Free Trial. Pricing starts from $795 for 25 servers or applications! http://p.sf.net/sfu/zoho_dev2dev_nov _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
