v22 I can't get PVR recordings to play - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26) +---- Forum: PVR (https://forum.kodi.tv/forumdisplay.php?fid=136) +---- Thread: v22 I can't get PVR recordings to play (/showthread.php?tid=380163) Pages:
1
2
|
I can't get PVR recordings to play - Stuggy - 2025-01-16 Running latest (almost) master Kodi 22 alpha built on windows. This was previously working. I am now getting errors like: Code: 2025-01-16 14:45:54.265 T:24492 error <general>: CVideoPlayer::OpenInputStream - error opening [pvr://recordings/tv/active/Big%20Buck%20Bunny, TV, 20241011_140745, 2.pvr] It is a path problem I believe. I haven't had to deal with pvr://recordings/tv/active before. I don't see it in the Kodi special path list. Isn't there a simple way that I can just provide a path to my recordings? I thought that maybe in 22 I need to provide the path to the recordings somehow differently but I don't see it yet. Any help appreciated. RE: I can't get PVR recordings to play - A600 - 2025-01-16 Do you have the same problem with this build? https://mirrors.kodi.tv/nightlies/windows/win64/master/KodiSetup-20250102-dad09250-master-x64.exe If not, probably related to this PR I have the same problem with the pvr.iptsimple recordings and hopefully I'll be able to create an issue on github this weekend. RE: I can't get PVR recordings to play - Stuggy - 2025-01-16 Thanks for the heads up. I'll take a look at it. I spent a chunk of today going over code that worked before. RE: I can't get PVR recordings to play - emveepee - 2025-01-17 (2025-01-16, 21:26)A600 Wrote: I have the same problem with the pvr.iptsimple recordings and hopefully I'll be able to create an issue on github this weekend. Since pvr.iptvsimple doesn't this is confusing. RE: I can't get PVR recordings to play - ksooo - 2025-01-17 > I am now getting errors like: What would help is step-by-step instructions how to reproduce the issue. Just from looking at the error message I cannot do anything to help, sorry. I definitely need a full debug log. As of now, we do not even know which pvr addon you are using. > I have the same problem with the pvr.iptsimple recordings As far as I know pvr.iptvsimple does not support recordings > I haven't had to deal with pvr://recordings/tv/active before. And you never should. The format of these URLs is not documented for a reason - they are only for internal use. If you try to mess with them yourself, you have to be prepared that your code doing this breaks at any point in time. RE: I can't get PVR recordings to play - Stuggy - 2025-01-17 I will be following up with details shortly. Thanks for the response. RE: I can't get PVR recordings to play - Stuggy - 2025-01-17 For example I have a test recording that I have in C:\Users\Stu\AppData\Roaming\Kodi\userdata\addon_data\pvr.stug.recorder\Recordings The recording is big_buck_bunny_720p_surround.avi Previously with Kodi 19-21 it was working. I just updated my addon to Kodi 22 alpha because I was having playback sound problems and wanted to see if ffmpeg 7+ helped because my saved files worked perfectly in VLC. Anyway, that helped with playback but I lost the ability to use playback within Kodi. I am using my own PVR addon that I have been developing for a while. Debug log RE: I can't get PVR recordings to play - Stuggy - 2025-01-17 As a follow up. I just tried the prebuilt version of Kodi from https://mirrors.kodi.tv/nightlies/windows/win64/master/KodiSetup-20250102-dad09250-master-x64.exe mentioned above by A600 and my app works and plays back the recording. Obviously not ideal as the master branch does not work. Hopefully the two debug logs are useful. I changed nothing between running both versions. New log RE: I can't get PVR recordings to play - A600 - 2025-01-17 (2025-01-17, 09:16)ksooo Wrote: As far as I know pvr.iptvsimple does not support recordings Create an m3u like this and load it with IPTV Simple: Code: #EXTM3U With KodiSetup-20250102-dad09250-master-x64.exe all is fine: Code: 2025-01-17 11:08:04.262 T:15984 info <general>: AddOnLog: pvr.iptvsimple: pvr.iptvsimple - GetMediaEntry But with KodiSetup-20250104-68bbc562-master-x64.exe: Code: 2025-01-17 11:12:19.571 T:2084 debug <general>: CPlayerCoreFactory::GetPlayers(pvr://recordings/tv/active/TEST/Recording, TV, 20250117_101215, 98520329-/TEST/Recording.pvr) Debug logs: kodi-dad09250.log kodi-68bbc562.log RE: I can't get PVR recordings to play - ksooo - 2025-01-17 @Stuggy please activate debug log level and pvr component debugging in Kodi settings, restart Kodi, reproduce the issue, and send the log again. RE: I can't get PVR recordings to play - ksooo - 2025-01-17 @Stuggy: What I already see from the logs is that exactly the same pvr URL is handed over to VideoPlayer, but in one case VideoPlayer does not create a demuxer. RE: I can't get PVR recordings to play - ksooo - 2025-01-17 @A600 for your case, pvr.iptvsimple is returning an error "not implemented" when it should open the recording for playback. best is to raise an issue for pvr.iptvsimple at github. EDIT: Seems it actually is not an addon issue. I'm working on it... @Stuggy can you confirm that your pvr add-on is returning no error when asked to open the recoding's stream (API call to OpenRecordedStream) or don't we even get to that point? RE: I can't get PVR recordings to play - ksooo - 2025-01-17 Found the issue. Fix is in the works. RE: I can't get PVR recordings to play - Stuggy - 2025-01-17 Appreciated RE: I can't get PVR recordings to play - A600 - 2025-01-17 Great! Many thanks, @ksooo Edit: Compiled the PR with the fix and working as before |