Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
1 answer
77 views

I am using Javascript to play an HTML5 video when you hover over it, and then pause the video once the mouse exits. The module is working correctly in that sense, except it only works for the first ...
Ben Stewart's user avatar
1 vote
0 answers
114 views

Calling renderer.render() in a requestAnimationFrame() loop will often fire faster than the <canvas> element can update its image, making any "true" FPS measurement inaccurate. In ...
user3163495's user avatar
  • 3,968
2 votes
0 answers
145 views

Given an HTML5 video element... ‹video id='video' autoplay muted playsinline></video> ..and some JavaScript to set its source to a camera by means of getUserMedia... (async () => { ...
Will's user avatar
  • 2,181
0 votes
0 answers
113 views

I’m building a React component where I need to play MP4 videos one after another. The next video URL is received from the server only after the current one finishes. The problem: When I update the ...
Gibson's user avatar
  • 100
3 votes
1 answer
225 views

I’m trying to create a 15px yellow scalloped border around generic content divs (e.g. with background photos or videos) for a nonprofit preschool website. Here’s the effect I’m aiming for: I’m using ...
PassionateLogic's user avatar
0 votes
1 answer
60 views

I'm building a custom React video player that uses an to load external video players (like this sample link). I want the app to automatically go to the next video when the current one ends — but ...
md. nishat nirob neer's user avatar
0 votes
0 answers
68 views

I'm building a custom video player in React and I'm having trouble aligning the time displayed on hover over the progress bar with the actual seek time used when clicking. Problem I use an as the ...
Sagittarius_A's user avatar
-11 votes
1 answer
300 views

I was watching a youtube where the content creator used GSAP to animate the switching between videos, which was very smooth, and I'd like to create something similar, but with a spinner that is shown ...
Ole's user avatar
  • 48.2k
-1 votes
1 answer
210 views

I’m building a web application that captures microphone audio using MediaRecorder and sends it to the backend for processing. Everything works fine on most devices (desktop and mobile), but on some ...
KRAEVSKIY BOGDAN's user avatar
0 votes
0 answers
54 views

I want to embed an iframe that contains a vimeo video inside a container div and give that div any ole aspect-ratio and just have my vimeo video conform to that using something like object-fit: cover (...
taber's user avatar
  • 3,240
1 vote
1 answer
61 views

Let's say we have : const trackProcessor = new MediaStreamTrackProcessor({track: tracks}) const trackGenerator = new MediaStreamTrackGenerator({kind: 'video'}) const transformer = new TransformStream(...
Sha's user avatar
  • 51
1 vote
1 answer
91 views

I am currently working on my website that supports file uploading. Part of this feature involves the ability to stream video from my site using the video tag in html. Currently I have this feature ...
Hellin's user avatar
  • 21
2 votes
1 answer
78 views

Context I'm currently building a library to precisely record (ideally any) javascript-based animation, even on slow computers or at very high framerate (e.g. 120fps to do motion blur later…). What I ...
tobiasBora's user avatar
  • 2,594
0 votes
1 answer
205 views

I'm experiencing issues with audio playback in my React video player component specifically on iOS mobile devices (iPhone/iPad). Even after implementing several recommended solutions, including Apple'...
galilei's user avatar
  • 85
1 vote
1 answer
125 views

I'm building a web app to run on my home LAN, which will stream video files from a central server to whichever device I feel like watching on. These video files (.mp4, .mkv, etc.) often have multiple ...
Keith Stein's user avatar
  • 6,917
1 vote
0 answers
122 views

So I have this weird problem that only occurs on Firefox for Android. When I open a MediaStream using the Media Capture and Streams API and use the resulting stream as video source for a HTML5 Video ...
hullunist's user avatar
  • 1,307
1 vote
1 answer
1k views

I am creating an Angular 19 app. This is my stackblitz link. This is my video tag in index.html <video controls width="600" height="300" id="myVideo"> <source ...
user3103982's user avatar
0 votes
0 answers
127 views

In a small web project I am trying to get a video element that displays a video track "cropped" in portrait mode. In my HTML I have something like: <video id="video" style="...
Federico Tomasi's user avatar
0 votes
2 answers
70 views

This video plays back correctly in MacOS Preview, but fails to playback in Safari (iOS + MacOS). Why? <video src="https://lt.harding.dev/pictrs/image/88aaf722-b9d5-4e72-88c4-63e5e9a1bc42.mp4" ...
aeharding's user avatar
  • 618
0 votes
1 answer
29 views

I can display one video in canvas using something like the following code : let animation_handle; const canvas = document.querySelector("canvas"); const ctx = canvas.getContext("2d"...
Steve Brooker's user avatar
0 votes
1 answer
26 views

I am using the html5 video tag to refer to a video as such: <video width="100%" height="auto" onloadedmetadata="this.muted = true" ...
Aastha B's user avatar
  • 386
2 votes
1 answer
90 views

I found an interesting thing on the game's website. When you focus on a button, it adds a <video> as a background on hover. But this video is in `mp4` format with a black background. Can someone ...
BlackStar1991's user avatar
1 vote
0 answers
463 views

I am getting : (index):60 Error during fetch or decode process: DataError: Failed to execute 'decode' on 'VideoDecoder': A key frame is required after configure() or flush(). If you're using AVC ...
stackexplorer0202's user avatar
0 votes
2 answers
886 views

I am streaming screen recordings from the browser into 5-second WebM chunks using the MediaRecorder API. The first chunk (root chunk) is independently processable because it contains the necessary ...
Dinesh Kumar's user avatar
1 vote
2 answers
279 views

Environment I am developing a product for a highly restricted environment (e.g., military, casinos) where installing my media server(for transcoding) is not allowed. As a result, I need to handle ...
GyeongHoKim's user avatar

1
2 3 4 5
160