I got my first 2.3.6 graph stop crash last night, and it still took out NRecord. The difference now is that all of NRecord hung; before 2.3.6 some of it would still survive, like the EPG update routine. You can see from last night's log that it just stopped doing anything at 2am.
I do have the patch you posted to get rid of the crash.mdmp pop-up, so I got a crash.mdmp but no interactive services pop-up.
When I looked at the task manager after the crash, neither NRecord nor NDigitalHost were running.
Sometimes I'm having problems with playing dvd's iso's on the PCH. I thought it was related to rights in W7, but I now believe it might be because of the startup script on the PCH and the combination with WakeOnLan. Here's my script:
Code:
#!/bin/sh
echo "Content-Length: 80";
echo "Content-type: text/html";
echo "";
cd ~
mkdir /etc/mvpmc >/dev/NULL
echo "";
if [ -f /etc/mvpmc/mvpmcx2 ]
then
echo "Already Connected!";
else
mount --bind /opt/sybhttpd/localhost.drives/USB_DRIVE_A-1 /etc/mvpmc
mkdir /mnt/D:\\Videos
mount -t cifs //192.168.1.83/Videos /mnt/D:\\Videos/ -o username=guest,ro;
cp /etc/mvpmc/utelnetd /usr/bin;
cp /etc/mvpmc/ether-wake /usr/bin;
chmod 777 /etc/mvpmc/*;
utelnetd -l /bin/sh -p 23 &
ln -s /lib/librmjpeg.so /lib/libjpeg.so.62
ln -s /lib/librmzlib.so /lib/libz.so
ln -s /lib/librmzlib.so /lib/libz.so.1
ln -s /lib/librmzlib.so /lib/libz.so.123
echo "Telnetd started on port 23............";
fi
ether-wake 00:24:1D:C4:A6:CA
killall gaya
sh -c /etc/mvpmc/startmeup 2>/dev/null >/dev/null &
exit 0;
This works fine if I run it the first time and my PC is on. But when the PC is off, the script tries to mount /mnt/D:\\Videos, while D:\\Videos isn't awake yet. How do I change this script to make the mount work?
UJB - I've attached a web log file which comes from FirstTeamOPS (forum user) related to a couple of failed attempts to use NDroid to schedule recordings. Have you any idea what would cause the error and exceptions.
Basically the nDroidService receives a record request from the nDroid app which includes username/password. It checks them against those stored in the npvr config.xml and, in this case it's happy that they match. At that point it connects locally to the NEWA schedule web service and attempts to schedule the recording. In the nDroidService logs there's an exception as follows...
Quote:17/01/2012 18:56:11.551 System.Web.Services.Protocols.SoapException: Unauthorized
at N_EWA.classes.AuthExtension.ProcessMessage(SoapMessage message) in d:\NPVR\web\App_Code\Classes\webServiceAuthentication.cs:line 79
at System.Web.Services.Protocols.SoapMessage.RunExtensions(SoapExtension[] extensions, Boolean throwOnException)
at System.Web.Services.Protocols.SoapServerProtocol.CreateServerInstance()
at System.Web.Services.Protocols.WebServiceHandler.Invoke()
at System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()
at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
at uk.co.beetec.csharp.nDroid.NpvrScheduleService.ScheduleService.scheduleRecording(webServiceScheduleSettings schedlSettings) in C:\Documents and Settings\gbpvr\My Documents\Visual Studio 2008\Projects\nDroidService\nDroidLib\Web References\NpvrScheduleService\Reference.cs:line 189
at uk.co.beetec.csharp.nDroid.nDroidServiceHelper.ScheduleNpvrRecording(Int32 oid, Int32 pre_pad, Int32 post_pad, Int32 days_to_keep, String username, String password, String type) in C:\Documents and Settings\gbpvr\My Documents\Visual Studio 2008\Projects\nDroidService\nDroidLib\nDroidServiceHelper.cs:line 500
...and the attached web log shows the associated NEWA error logging.
I've never seen this with nDroid so I'm wondering if this an issue with FirstTeamOPS NEWA setup - any ideas?
I need a batch file that does:
- read the filename of any file within a subfolder
- make a dir with the name of the readed filename
- move the file into the new created dir
It would be nice, if the batch could move the coverart for the movie too (.jpg) into the new folder.
Q: Why do i want to change this?
A: Oh well, this is easy explained. A lot of movies are trilogies or even quadrologies. So i have in the sorting order first trilogies oder quadrologies and then the solo movies. This isn't an alphabetical order and it's not nice if you're searching something.
Q: Why just don't ding this manual?
A: It's no fun with 100+ files ... and lesser fun doing this with 1.000+ files
Thanks in advance for any "ready-to-use" solution or just a few sample lines.
can I back up npvr like gbpvr? In GBPVR I used to just make a copy of the entire directory. Then after a system image restore I just copy the backup directory back and my system is restored but GBPVR is still updated - think playing with codecs!!
What directories do I need to back up? It looks like there are two or three.
Settings > Devices > Analog is what I am looking at.
I need to change Tuner:3 to SVideo:3 along with about 500+ other channels on DirecTV.
I really don't want to empty the list/EPG then re-add them as I had to go through the channel names on the CHANNEL section to make them all the same as used on DirecTV.
SubMenu is a main menu replacement plugin, which duplicates most of the functionality of NPVR's main menu, and add the ability to define sub menus and customize the name and/or image of any menu entry. It currently supports horizontal menus only.
The latest version was released on January 23rd with the following changes:
- Added support for automatically adding new plugins to the menu
- Menu entries can now be disabled by setting their 'enabled' attribute to false
- The log level can now be set using the Settings dialog
The wiki pages also includes a link to some nice background images created by Mattyb3806 that can be used with SubMenu.
I have a sabrent USBHD 2.0 ATSC/NTSC stick. When I run npvr it only shows as an ATSC. I have a cable plugged in and need it to be recognized as NTSC. Any ideas how I can get to be recognized as such? Thank you.
I need to select all distinct programme names from the SCHEDULED_RECORDING column BUT I also need to return a unique identifier at the same time. Confused? Join the club.
The problem is that SELECT DISTINCT works on multiple columns so the following actually produces multiple instances of the 'name' field...
Code:
SELECT DISTINCT oid AS _id, name FROM SCHEDULED_RECORDING
The problem is the 'oid' field is always unique as it's an auto-increment and so DISTINCT is matching on that and returning each entry for the 'name' field.
All I need is one instance of each 'name' and an associated oid - I don't care which oid I get. I've tried WHERE IN and a separate SELECT as well as trying JOIN (LEFT and INNER) but at this point my SQL is very thin.
I am thrilled with new release and hardware/os updates I have done... System runs smooth and can finally enjoy npvr as others are. I do have a few issues with plugins that are being addressed in other threads.
Am unable to use the ff, pause/play(resume) as the latency is tremendously long. Last test was over 10 minutes. I am attaching logs..