pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add comment about safari thumbnails not build possible

Pas bc7886ca b8ca5c3f

+6
+6
src/components/player/internals/ThumbnailScraper.tsx
··· 82 82 } 83 83 84 84 start(source: LoadableSource) { 85 + // afari has extremely strict security policies around canvas operations with video content. When the thumbnail generation tries to: 86 + // Load cross-origin video content into an off-screen <video> element 87 + // Draw video frames to a <canvas> using drawImage() 88 + // Extract image data with canvas.toDataURL() 89 + // Safari marks the canvas as "tainted" and throws a security error, preventing the thumbnail generation entirely. 90 + // While still technically possible to generate thumbnails in Safari, it's not worth the effort to fight their strict CORS policies and we just don't support it. 85 91 if (isSafari) return false; 86 92 const el = document.createElement("video"); 87 93 el.setAttribute("muted", "true");