Questions tagged [media-source]

MediaSource JavaScript API extends the HTMLMediaElement to allow JavaScript to generate media streams for playback.

325 questions
0
votes
1 answer

MediaSource API, buffering strange behavior

I'm testing a streaming web application that uses MediaSourceAPI. Everything works fine, however when i stream big files (i.e 240MB or more), the buffer of the video has a strange behavior. To be more clear i attached three images you can check. My…
david6630
  • 169
  • 1
  • 3
  • 8
0
votes
1 answer

MediaSource: Uncaught InvalidStateError: Failed to execute 'appendBuffer' on 'SourceBuffer': This SourceBuffer has been removed

I am trying to work out with first demo MediaSource try out but I am unable to play video. Source I am using is a webm video "big-buck-bunny_trailer.webm". I keep getting "Uncaught InvalidStateError: Failed to execute 'endOfStream' on 'MediaSource':…
rohitpal
  • 455
  • 1
  • 6
  • 21
0
votes
1 answer

Media Player not removed using MediaSource and webRTC streaming

I am trying to stream multiple media files (sequentially) from one webRTC device to another using the mediasource API on the receive side. The files are received and played on the same video source element on the page but each time i stream a new…
SBG
  • 357
  • 4
  • 17
0
votes
2 answers

Media Source Extensions (MSE) - Chrome for Android

As far as I can gather, Media Source Extensions are supposed to be implemented in the latest current version of Chrome for Android. On the Chromium Dashboard there's also an indication that this should be working. However it seems that in practice…
orcaman
  • 6,263
  • 8
  • 54
  • 69
0
votes
1 answer

MediaSource API - reloading MP4 video being recorded

I have a MP4/H264 video clip which is being captured so that it grows every 4 seconds and its metadata is dynamically refreshed. Since this is not fragmented MP4 I cannot use MediaSource API to manipulate chunks. I'm looking for a way to…
WooDzu
  • 4,771
  • 6
  • 31
  • 61
0
votes
1 answer

Media Source API Chrome 33 not working

The media source API in Google Chrome 33 is not working after I installed the latest Windows 7 updates and rebooted my computer. It was perfectly working before the reboot. When going here I get the following message: Media Source API is not…
Andrea
  • 155
  • 1
  • 1
  • 9
0
votes
1 answer

MediaSource API not installed in chrome version 27

I have chrome version 27 and according to this link MediaSource API is installed by default. Then in the same page the test section says that Your browser does not support the MediaSource API Please help me out.
Uday Reddy
  • 1,337
  • 3
  • 16
  • 38
0
votes
0 answers

Can I send media segments to the Google Cast media source?

I assume Google Cast uses the Media Source API. Is there any way to send media segments to the device? I have a video stream that needs to be preprocessed.
user492922
  • 925
  • 2
  • 12
  • 23
-1
votes
1 answer

Not able to play video using html Mediasource

I have a server with kcinit.mp4, kc1.m4s, kc2.m4s , kc3.m4s ... until kc54.m4s. I have a java servlet to respond to GET requests to this files. I am trying to implement streaming. However, I am unable to play these files on html using…
Ajay
  • 318
  • 2
  • 11
-2
votes
1 answer

Javascript Mediasource play video and audio simultaneously?

I want to play audio and video simultaneously using Media Source in Javascript. I can play either but not both at the same time. Here's my code so far: let mse = function() { if ('MediaSource' in window && MediaSource.isTypeSupported(codecs))…
join
  • 1
  • 3
1 2 3
21
22