Add "move to finished" button in removed recordings?
Added by jim dods almost 6 years ago
I have an issue where when i reboot my pi with TVheadend 4.3xx, all finished recordings move to removed recordings, saying "File missing." But the files are still in the same spot, and they can play fine. I am wondering if it would be possible to get the "moved to finished" button under removed recordings, like it is on finished recordings?
As an aside, this issue showed up before, so i upgraded to the latest 4.3 version, and it again saw the recordings as finished.
The log says "unable to stat file" -- the files are indeed there. not sure what is up -- and before you ask, the show is for my wife! Thanks
Line 2801: Feb 1 12:11:19 RasPi_TVH tvheadend[430]: dvr: unable to stat file '/media/RouterNAS/General Hospital-S56E206.ts'
Line 2802: Feb 1 12:11:19 RasPi_TVH tvheadend[430]: dvr: unable to stat file '/media/RouterNAS/General Hospital-S56E204.ts'
Line 2803: Feb 1 12:11:19 RasPi_TVH tvheadend[430]: dvr: unable to stat file '/media/RouterNAS/General Hospital-S56E203.ts'
Replies (3)
RE: Add "move to finished" button in removed recordings? - Added by jim dods almost 6 years ago
ok, it looks like the issue is on reboot, my NAS drive may not be fully connected as when I do a TVH restart via SSH, the shows are properly in finished.
So, right now in rc.local I have
sleep 20
sudo mount -a
Any idea what else i should do to have TVH see the drive before it starts? ie, how to delay the start of TVH when the pi boots up?
Thanks
RE: Add "move to finished" button in removed recordings? - Added by Em Smith almost 6 years ago
Does your pi support "autofs"? Assuming your mount is nfs then you can generally just access machines via "/net" so "/net/RouterNAS/…", then the system will just automatically mount the NAS on first access.
RE: Add "move to finished" button in removed recordings? - Added by jim dods almost 6 years ago
Thanks Em -- I will look into that.