Mark Gaiser
Mark Gaiser
I've been debugging it ever since my previous reply. Somehow a video frame is tried to be read from "stream 1" which is the audio in this particular video. But...
Awesome! I'll post here if i find something before that time.
Have you found something? I spend a couple more hours without any success :(
I am one - small - step further. ``` if (!IsVideoReady()) { m_packet.reset(); DemuxPacket *pPacket = CDVDDemuxUtils::AllocateDemuxPacket(0); pPacket->demuxerId = m_demuxerId; return pPacket; } ``` Up till that function (in `CDVDDemuxClient::Read()`)...
Oh well, fast update, lol. Removing the `if (!IsVideoReady())` check makes it work.... But that's internal Kodi code, not your plugin!... Help, lol.
> > Oh well, fast update, lol. Removing the `if (!IsVideoReady())` check makes it work.... But that's internal Kodi code, not your plugin!... > > Help, lol. > > The...
So... this is super cool! With this patch: https://p.sc2.nl/nfkCy You'll get crypto support :D (not done yet, don't take the patch code as final) Here's an example m3u file that...
I really hope you'll get there :) I can't wait to submit this as a PR to get decrypting working in kodi! Note, i'm also working on adding the IPFS...
> Found a couple of problems today. Awesome!! Thank you for putting in some more time! We'll get there eventually 😁 > > First is that kodi opens this as...
If I understand that correctly then the example file that I tried to open using your plugin is now opened using the internal ffmpeg instead. How do I expand that...