Simmilar problem, using an old PC1500 motherboard (VIA CPU).
Flags obtained with cat /proc/cpuinfo:
flags : pae fpu vme de pse tsc msr cx8 sep mtrr pge cmov pat mmx fxsr sse rng rng_en ace ace_en
Last running version: plexmediaserver_0.9.9.12
Errors on dmesg when uong plexmediaserver_0.9.9.13 or plexmediaserver_0.9.9.14:
[29275.101123] init: plexmediaserver main process (29087) terminated with status 132
As papst said, compile from source opencv and substitute the libraries in /usr/lib/plexmediaserver/ by the newer ones.
As pujan14 explained, to compile:
1) follow this guide http://docs.opencv.o...ux_install.html Download opencv source and to things as per the guide except use this command "cmake -D CMAKE_BUILD_TYPE=RELEASE -D ENABLE_SSE2=OFF -D ENABLE_SSE3=OFF -D CMAKE_INSTALL_PREFIX=/usr/local .." to configure cmake.
2) Compile with
make -j2
3) Once library is built for your architecture you replace libopencv_imgproc.so.2.4 and libopencv_core.so.2.4 from /usr/lib/plexmediaserver/ to newly build one's. you will find two files called libopencv_imgproc.so.2.4.9 and libopencv_core.so.2.4.9 (for opencv version 2.4.9) in folder release/lib you created from last step.
sudo cp opencv-2.4.9/release/lib/libopencv_core.so.2.4.9 /usr/lib/plexmediaserver/
sudo cp opencv-2.4.9/release/lib/libopencv_imgproc.so.2.4.9 /usr/lib/plexmediaserver/
4) I renamed the old files and soft-linked the new files to use the filenames expected by plexmediaserver:
cd /usr/lib/plexmediaserver/
sudo mv libopencv_core.so.2.4 libopencv_core.so.2.4.old
sudo mv libopencv_imgproc.so.2.4 libopencv_imgproc.so.2.4.old
sudo ln -s libopencv_core.so.2.4.9 libopencv_core.so.2.4
sudo ln -s libopencv_imgproc.so.2.4.9 libopencv_imgproc.so.2.4
sudo service plexmediaserver start