mihd wrote:It's just great!!!zoelechat wrote: You mean PVRtoTS autostart? This is not related to PVRdecoder but SamyGO extensions, and you can already enable it by yourself.
-libPVRtoTS.so is located in /mtd_rwcommon
-startup scripts are in /mnt/etc/init.d
-take example on existing scripts and other modules installation in [F Software] forum (e.g. ChannelInfo, it works exactly the same way)
-do manual tries before installing definitely your script
Configured autostart PVRtoTS, as 'ts_outdir' pointed a folder on the router.
Now I can view recordings on any device connected to the router!!!! For me it is important, since my TV receiver on the second TV works only as NFS client and Samygo has not NFS server (Why? I did not respond in any forum).
It remains to wait solve problems with UTF-8 ..
If more and automatic renaming will work, it will be just super .. Probably too much to ask
Could you share your autostart init file? I tried to make my own but it's not working. Also, will it work while recording on standby?
My init file looks like this:
Code: Select all
#!/bin/sh
#
# ? Copyright 1996-2013, SamyGO
#
#
. /dtv/SGO.env
libPATH=/mtd_rwcommon
case $1 in
start)
samyGOso -p `pidof exeDSP` -l $libPATH/libPVRtoTS.so
sleep 1
#Code for exeDSP crash protection
#while [ "$( ps -A | grep -c 'exeDSP')" -gt 0 ] ; do
# sleep 60
#done
#mv $0 $0.dis
;;
status)
;;
*)
echo "Usage: $0 {start|stop|status}" 1>&2
exit 0
;;
esac