lightcase icon indicating copy to clipboard operation
lightcase copied to clipboard

HTML5 Video with HTTP live URL declares "Source Not Found".

Open simmonsr opened this issue 7 years ago • 4 comments

When using absolute path URL for HTML5 Video:

screen_shot_2017-08-01_at_1 47 56_pm

Lightcase comes up as source not found:

screen_shot_2017-08-01_at_1 48 40_pm

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.

simmonsr avatar Aug 02 '17 15:08 simmonsr

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. 😄

simmonsr avatar Aug 02 '17 15:08 simmonsr

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.

akester avatar Oct 02 '17 15:10 akester

Any news on this, when it will get addressed?

DamirPecnik avatar Oct 11 '17 18:10 DamirPecnik

@DamirPecnik Will be fixed in v2.4.1

cbopp-art avatar Nov 23 '17 11:11 cbopp-art