lightcase
lightcase copied to clipboard
HTML5 Video with HTTP live URL declares "Source Not Found".
When using absolute path URL for HTML5 Video:
Lightcase comes up as source not found:
I am using a valid link (the video plays via the link outside of lightcase). Relative paths or a http://localhost path work fine though.
Line 317 seems to be causing the issue:
if (supportLevel !== 'probably' && supportLevel !== video.canPlayType(videoType) && video.canPlayType(videoType) !== '') {
removing additional conditions and just keeping if (supportLevel !== 'probably')
resolves the issue. But perhaps that is not the best solution. I'm just trying to throw someone a 🍖 here. 😄
Holding the version at ~2.3 is another workaround.
From what I've looked at it the videoType is not detected correctly. In our case it's pulling data from the domain, and makes the videoType 'video/ourdomain'. This is what's tripping up the extra conditionals.
Any news on this, when it will get addressed?
@DamirPecnik Will be fixed in v2.4.1