I have had this issue in the past, but it has come back again. I have been running stable for some time now, and I just upgraded to 7.0 yesterday, nothing else has changed. It took me a beat to notice, but since I upgraded, after a show has finished recording and it gets processed by PostProcessing.sh, it disappears from the database. The PostProcessing script contains this (at the end of the script):
so, it's remuxing to MKV in a different location, in theory, updating the database with the new location, and then removing the original. All worked perfectly before the upgrade, and the file still showed up in the recordings in NextPVR. After the upgrade it disappears.
I'm going to take a guess that either I need to manually update NScriptHelper.dll, or the DLL location changed, or it now takes different parameters.
It is entirely possible that I replaced this file with a patched version from Martin a while back that may no loner work in the latest release (if it wasn't updated by the new install).
Martin, Sub, any ideas?
Thanks
Code:
# remux to mkv in the Plex location
ffmpeg -fflags +genpts -i "$1" -vcodec copy -acodec copy -c:s copy "${plex_file%.*}.mkv"
# tell NextPVR where it went
/opt/dotnet/dotnet /opt/nextpvr/system/NScriptHelper.dll -rename "$1" "$plex_file"
#delete original
rm "$1"
so, it's remuxing to MKV in a different location, in theory, updating the database with the new location, and then removing the original. All worked perfectly before the upgrade, and the file still showed up in the recordings in NextPVR. After the upgrade it disappears.
I'm going to take a guess that either I need to manually update NScriptHelper.dll, or the DLL location changed, or it now takes different parameters.
It is entirely possible that I replaced this file with a patched version from Martin a while back that may no loner work in the latest release (if it wasn't updated by the new install).
Martin, Sub, any ideas?
Thanks