Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
1 replies
57 views

My websiite using hls.js player to play the stream with multi text tracks (HLS). I want to remove the default black ground of text tracks, make it transparent. It works on windows. But not on macOS (...
Van Minh FPT's user avatar
0 votes
0 answers
45 views

I am working on an audio player where a logo is drawn and animated using the element. The animation is based on the audio frequencies analyzed in real time. Everything works as expected when using an ...
Zafar Hatamov's user avatar
2 votes
1 answer
155 views

I am building an NWJS app that uses hls.js library (https://github.com/video-dev/hls.js) to do HLS streaming (as Chrome does not currently have native HLS support). If I run the app, the video does ...
KevinHJ's user avatar
  • 1,134
2 votes
1 answer
745 views

I am encoding a live 25 FPS 950x540 H.264 video-only stream using the latest (built from source) FFmpeg, 10 segments in the manifest, each of 5 seconds, and consuming that stream on another machine on ...
Rob's user avatar
  • 947
2 votes
0 answers
102 views

I currently serve videos as follows: Client: if (Hls.isSupported()) { const hls = new Hls(); hls.attachMedia(video); hls.on(Hls.Events.MEDIA_ATTACHED, ...
Bruno Munné's user avatar
0 votes
1 answer
146 views

#EXTM3U #EXT-X-VERSION:3 #EXT-X-TARGETDURATION:18 #EXT-X-MEDIA-SEQUENCE:0 #EXT-X-PLAYLIST-TYPE:VOD #EXT-X-KEY:METHOD=AES-128,URI=https://xxx//xxxxx.com/api/xxx/xxxxx/xxxxxxxxxxxx/live?signkey=...
Danh Pham's user avatar
1 vote
0 answers
192 views

I am trying to build a video caching system like Instagram or YouTube reels. Now I facing a problem. When I play my HLS video that is on the cloud is playing fine but when I try to play them from my ...
Ayan Das's user avatar
1 vote
0 answers
379 views

I'm attempting to use a EXT-X-SESSION-KEY tag to retrieve the decryption information from our CDN in the multivariant manifest. So far that has worked quite well. The problem is that I use two kind of ...
Oscar Vindas's user avatar
1 vote
2 answers
789 views

I am using hls.js to play HLS video stream. The hls.js is using blob URL to display the video element in src tag (<video src="blob://.." />). I can capture it in Chrome by converting ...
Amir Movahedi's user avatar
0 votes
1 answer
267 views

Is it possible to add a three.js AudioAnalyser (or WebAPI AnalyserNode) to an Hls audio stream? This is what I have so far and average frequency always returns 0. let audioContext = new (...
Nate LeGrand's user avatar
0 votes
1 answer
2k views

I have a website that runs on node.js and express on the back end that in turn calls .py script to download a user-requested audio using yt-dlp. When I run the website on the localhost, everything ...
mansur ischanov's user avatar
1 vote
1 answer
6k views

I am building a react for a video player using Hls.js. I am using React Refs and calling useEffect to get the video element after it is rendard. The issue is I keep getting an error. import Hls from &...
Joes Momma's user avatar
1 vote
0 answers
167 views

in my angular project, using of Plyr and ngx-plyr with hlsjs for playing stream m3u8. no problem with one m3u8 but if exists two m3u8 in sources, playing only one source. how to play multiple m3u8 in ...
or123456's user avatar
  • 2,209
0 votes
1 answer
447 views

i tried to implement hls player on my nextjs app using react-hls-player but i'm getting Cannot use import statement outside a module error, do you know which part im missing?, here is my code stream....
Umar's user avatar
  • 5
-1 votes
2 answers
2k views

Currently, I am trying use HlsJS to play m3u8 video in my web application but when I load video irrespective of autoplay attribute it starts playing when I load it first time. Here is my javascript ...
himanshu_942's user avatar
1 vote
0 answers
1k views

I'm trying to embed an HLS stream on my website using Video.js, but for some reason, it's not working. Here's the code I'm using: `<!DOCTYPE html> <html lang="en"> <head> ...
Umer Khokhar's user avatar
1 vote
1 answer
677 views

I am using ngx-videogular in one of my application to stream live media. It works perfect everywhere except the browsers in iPhone/iPad. I am using Hls.js along with ngx-videogular for streaming. Is ...
Gokul's user avatar
  • 394
0 votes
1 answer
476 views

I am generating a playlist manifest and playing the generated m3u8 file using HLS. I am looping over all the segment files to add their urls to #EXTINF:, but when I run my function, I get the error ...
Didi's user avatar
  • 481
0 votes
1 answer
3k views

How can I use hls m3u8 format in nextjs I tried with video.js CDN but I couldn't achieve it. Hls.js and react player are not compatible with the last version.
erick garcia's user avatar
0 votes
2 answers
2k views

I am using hls js for radio playback. This works well. My question is is there a way to retrive currently playing song data (title, artist)? I tried using some callbacks like (MANIFEST_PARSED, ...
Toniq's user avatar
  • 5,146
0 votes
1 answer
2k views

I'm creating video streaming platform with Vue.js. However, I encountered the question that I couldn't solve. That is when we use SPA like Vue.js, javascript are running on browser, so we have to ...
koji tanaka's user avatar
1 vote
0 answers
149 views

I was able to measure a stream using ffmpeg on the server side and display it on the user side with the hls.js library. i used php for a server side But now I have a problem, I want to increase the ...
amirhosein karimi's user avatar
0 votes
1 answer
412 views

Background: Some time ago I implemented hls.js on the page to get a radio stream. The source of the stream was in m3u8 format -> https://xx.net/content/123/m3u8s/456.m3u8 but now a client is going ...
karo-s's user avatar
  • 414
-1 votes
1 answer
3k views

How is Low Latency HLS achieved with FFMPEG? From my understanding thus far, I am seeing changes around the -f option. For example: -f dash -method PUT http://example.com/live/manifest.mpd But there ...
Devin Dixon's user avatar
  • 12.5k
0 votes
0 answers
648 views

I made a streaming server using Nginx RTMP. I created a live streaming server using Nginx, according to the explanation in this link: Create a secure adaptive bit-rate HLS stream with Nginx/RTMP/...
SHERLOV's user avatar

1
2 3 4 5