Joder, con lo maniático que soy...
A solution (for me)
Still, my 1080p files stuttered, while 720p played flawlessly. Just for the sake of curiosity, I tried copying one of these movies to an USB thumbdrive, and I attached it directly to the Raspberry Pi. To my surprise, it played smoothly.
I also noticed that playing the same file over HTTP (I also have a web server running on my home server), was just as good.
So it looked like NFS was the one causing troubles. I posted on STM Labs’ (the makers of Raspbmc) forum, and I was told to try to play around with NFS mount options in my /etc/fstab, since I was probably getting an insufficient throughput that caused stuttering. Well, that did the trick. After some trial and error, here is my “magic” line that gives me a great 11,7 Mb/s speed reading files from my NAS (that’s very close to the physical limit of the Pi’s 100 Mbit port, which is more than enough even for 1:1 BluRay rips).
192.168.1.77:/multimedia /thor nfs udp,noatime,rsize=32768,wsize=32768,nolock 0 0
You’ll have to adjust your server address, path and mount point, but the mount parameters will likely work for you as well.
OpenElec
As MartinP pointed out in the comments, due to OpenElec’s root filesystem being mounted read-only, editing /etc/fstab isn’t possibile.
However, it is possibile to edit /storage/.config/autostart.sh to run the mount command at boot. As an example, you can edit it like this:
#!/bin/sh
sleep 25
mount -t nfs 192.168.1.77:/multimedia /thor -o udp,noatime,rsize=32768,wsize=32768,nolock
As noted for /etc/fstab, adjust the server IP, share name and mount point as needed.
Sin embargo, SI puedo ver las grabaciones en el HDD, que también son mpg2 dentro de un archivo TS ¿?¿?¿?
He perdido parte de los botones del mando a distancia a través de CEC. Algo he tocado, y aunque lo ponga por defecto, no tengo controles de reproducción.
Sí me funcionan los cursores, opción, atrás y OK. Son suficientes, pero mola más darle a un botón para que se detenga en vez de abrir el menú. Y qué cojones, hasta ayer funcionaba.
He perdido parte de los botones del mando a distancia a través de CEC. Algo he tocado, y aunque lo ponga por defecto, no tengo controles de reproducción.
Sí me funcionan los cursores, opción, atrás y OK. Son suficientes, pero mola más darle a un botón para que se detenga en vez de abrir el menú. Y qué cojones, hasta ayer funcionaba.
Por cierto que diferencia hay al instalar un add on mediante repositorio o directamente?
Mediante repositorio acaso se actualiza automáticamente?