8,012 questions
1
vote
1
answer
33
views
InsertableStreams take a already modified videoFrame input
Let's say we have :
const trackProcessor = new MediaStreamTrackProcessor({track: tracks})
const trackGenerator = new MediaStreamTrackGenerator({kind: 'video'})
const transformer = new TransformStream(...
0
votes
0
answers
34
views
How to fix this iOS video animation issue when setting currentTime dynamically with JS?
I'm implementing a scroll-based animation in a Shopify storefront, where a background video plays step-by-step (frame-by-frame) as the user scrolls. It works perfectly across most platforms — ...
1
vote
1
answer
56
views
Why does my HTML video tag not function on mobile browsers?
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 ...
2
votes
1
answer
111
views
All candidate resources failed to load. Media load paused
I wrote a script to display mp4 clips FTP'd to the web server from a Reolink CCTV recorder. There could be hundreds sometimes over thousand of these clips along with their jpeg pictures displayed by ...
2
votes
1
answer
62
views
Overwrite video element: display a different image (manually decoded frame) & WebGL compatibility
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 ...
1
vote
2
answers
74
views
Live stream not working on vue.js using Video.js
I’m trying to play a live stream using Video.js in a Vue.js application, but I’m encountering the following error:
VIDEOJS: ERROR: (CODE:4 MEDIA_ERR_SRC_NOT_SUPPORTED) The media could not be loaded, ...
-1
votes
1
answer
143
views
Playing .mkv files in Chrome or Edge [duplicate]
My website has .mkv files that have been playing in Chrome and Edge just fine until version 134.xxxxx. As of version 134, the browser now needs to have hardware acceleration turned off in order to ...
0
votes
1
answer
76
views
iOS Mobile Video Audio Playback Issues in React
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'...
0
votes
0
answers
29
views
What is the difference between setting width on a video via attribute vs css? [duplicate]
I have a video I would like to embed in a webpage. Let's say its resolution is 500x500 and I'd like it to be scaled down to 100x100 on the page.
Is there any difference (visually or computationally) ...
1
vote
1
answer
61
views
HTML5 video player: How the audio stream is chosen when there are multiple options
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 ...
1
vote
1
answer
61
views
How to play a video starting from a particular point and stop at a particular point(in seconds) and loop the playing without user interaction?
I want to play a video (mp4) starting from a particular point(60 seconds), stop at a particular point(100 seconds), and loop the playing without user interaction.
<video autoplay muted loop>
<...
1
vote
0
answers
47
views
Firefox on Android does not adjust video output to landscape mode
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 ...
1
vote
1
answer
211
views
Mpegts js avc1.640028 Interlaced video not playing on Chrome
I am using mpegts js library for live streaming. We aim to play the live stream urls (.ts format) sent by our users.
The interlaced video below gives a black image in chrome but no problem in firefox
...
1
vote
1
answer
492
views
Angular 19 video from assets folder
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 ...
1
vote
1
answer
51
views
Is there a way to pipe the stdio stream with the output segment ts files during m3u8 from mp4 conversion in ffmpeg with nodes spawn function?
I am writing an automated pipeline in Node-JS that takes an MP4 file, compresses it, then returns the buffer of the compressed file, feeds it into another FFmpeg command, which then converts the mp4 ...