Twonkymedia 4.3 installs fine
Hi,
I had twonkymusic 4.2 running on my Asus, but got a mail from Twonky that they had released version 4.3 of TwonkyMedia and had discontinued TwonkyMusic.
They gave me a new licensecode.
That was nice, but how to proceed? I had previously installed version 4.1 with twonkymusic-maxtor.zip, but that is not anymore in the list of distributions.
Fortunately I found that twonkymedia-mss.zip from http://www.twonkyvision.com/Download...chnicians.html, listed there as Maxtor Shared Storage [PLUS], works fine.
Just unzip this in e.g. /opt/share/TwonkyMedia,
give this command:
chmod 700 twonkym* cgi-bin/* plugins/*
and with
./twonkymedia it runs.
In rc.local I have this, before changing LD_LIBRARY_PATH:
if [ -e /shares/${pool}/opt ]; then
#Start Twonkymedia in stead of mt-daapd, runs with original library_path
/opt/share/TwonkyMedia/twonkymedia &
export PATH=/opt/bin:/opt/sbin:${PATH}
export LD_LIBRARY_PATH=/opt/lib:${LD_LIBRARY_PATH}
fi
You probably want to change the configuration. It lists /shares and /foreign-shares automagically, and read everything it finds. In that way it easily uses more memory than is allocated (20000). But worse, this will hit your Music directory twice, because it can be found under /shares/MYVOLUME1/MYSHARE1/Music and under /shares/DMSRoot/Music. Result is rubish. If this happens to you, you must recreate the mediafolders. Just make sure that it only serves music from /shares/MYVOLUME1/MYSHARE1/Music, and you will be fine. As least I was...
Greets,
Marc
Help with installing twonky on wl-700ge
can someone help me with installing twonky on wl-700ge? I wanna be able to stream .mp4 and .avi video files to my dlink dsm-510 wirelessly.. the built-in media server in asus is not able to do it..
I have no knowledge about programing in linux.. so I would really appreciate if someone could detail the steps out for me.
Thanks a bunch..
Twonky needs the original library
Quote:
Originally Posted by
FastCat
Help pls to solve a problem.
I start (wl-700g) ./twonkymedia
In the answer I receive such message with an error
/opt/lib/libpthread.so.0: no version information available (required by./twonkymedia)
As it is possible to solve the given problem?
Twonky does not like the versions of the library that it finds in /opt. So, you should start Twonky before the new library is activated.
You can do that in rc.local (/opt/etc/rc.local) just before the new libpath is defined. See the bold section in this part of rc.local:
Code:
#############
# These items only run once at power up
#############
if [ ! -f /tmp/rc.local.done ]; then
#Start Twonkymedia, werkt met originele library_path
/opt/share/TwonkyMedia/twonkymedia &
export PATH=/opt/bin:/opt/sbin:/bin:/sbin:/usr/bin:/usr/sbin
export LD_LIBRARY_PATH=/opt/lib:/apps/lib:/apps/usr/gift-nasoc/lib
Marc