2,723 questions
1
vote
1
answer
77
views
Flutter video_player on iOS (AVFoundation) hls stream has very bad resolution
I am using the video_player package in Flutter to play hls streams (m3u8). I am using GCORE as a video streaming provider.
Here is the basic part of my code:
late final VideoPlayerController ...
1
vote
0
answers
53
views
How do I accurately track user viewing time of an HLS live stream in Clappr player? [closed]
We are using Clappr to play an HLS live stream.
We need to track the viewing time and only allow users to view the stream for a certain amount of minutes.
We have this "sort of" working in ...
0
votes
1
answer
111
views
How to stream large MKV/MP4 files with fast seeking and iOS support without doubling storage?
I have two servers:
A hosting server running my website and a section for video downloads.
A separate IIS server used for storing movies (formats: .mkv and .mp4).
I recently added an online player ...
0
votes
0
answers
179
views
m3u8 HLS url VIdeo Not Playing with hls.js and Art Player
I have a node Scraper Which Scrapes the HLS streaming url using Playwright Browser which gives the master Playlist like:
https://example.com/master.m3u8
Then that Master Playlist does have a cors ...
0
votes
0
answers
101
views
Continuously stream audio from .m3u8 file between FFmpeg processes
My webserver streams audio using HLS. I'm using a Python script to create an FFmpeg process that takes a random MP3 file and segments it so it can be delivered by the webserver. My issue occurs when ...
0
votes
0
answers
36
views
Live HLS stream stuck on buffering after dynamically inserted ad finishes playing on Media3/ExoPlayer
Trying to play a HLS stream with a dynamically inserted ad. Media3/Exoplayer is stuck on buffering state and couldn't play video or audio data after the ad finishes. Version of ExoPlayer used is 2.19....
1
vote
0
answers
39
views
How to provide raw video/audio recording data from mediacodec to ffmpeg kit in Kotlin?
I want to make chunks of 5 secs from the ongoing recording by MediaCodec in Android. I am using the ffmpeg kit for this. How can I provide continuous recording data to ffmpeg to make chunks ...
1
vote
1
answer
63
views
AAC from HLS TS causes clicks when decoded to PCM per segment
I'm working on a custom HLS audio player for iOS.
Each .ts segment contains AAC audio. I extract AAC from each TS file, decode it to PCM (using FFmpegKit), and schedule it using AVAudioEngine.
❗ ...
2
votes
0
answers
105
views
Flickering Artwork Images in tvOS for HLS Live Stream Chapters on tvOS 18
Problem
When displaying a live HLS stream with chapter markers containing artwork images in an AVPlayer, I'm experiencing significant flickering of the artwork images. This flickering occurs ...
0
votes
1
answer
85
views
Modify m3u8 to be recognized as Audio Only
I have an audio only m3u8, which I want to play with AdaptiveMediaSource. tutorial.
The problem (I believe) is that AdaptiveMediaSource is not recognizing it as AudioOnlyPlayback and thus errors when ...
2
votes
1
answer
78
views
m3u8 format not playing in avkit swift
I am trying to access the url using cookie, which you can see in my logs below. I am getting perfect response but video still not playing.
I tried getting KVO as well, it says status == 0
Implemented ...
0
votes
1
answer
87
views
How is the right way of adding a custom hls dependency to my react node project?
I want to modify the sources from https://github.com/video-dev/hls.js and add it to my project.
I downloaded https://github.com/video-dev/hls.js sources, made a few changes and ran npm run build. Then ...
0
votes
0
answers
28
views
NextJs solution for serverless function conversions to HLS using Sanity CDN
I am building a custom site using Next 14, React Three Fiber, and Sanity as a CMS/CDN. Sanity's headless CMS handles pretty much everything needed for all content media types except for video. It can ...
0
votes
0
answers
126
views
How to set up HLS stream?
I am working on a project where the main goal is to create a website where users will be able to watch live streams. These live streams will come from different sources, over different protocols. I ...
-1
votes
1
answer
373
views
ReactPlayer HLS Live Stream: How to Display the Correct Playing Clock Time?
I'm using ReactPlayer to play a live HLS video stream, and i want to display the current playing clock time. How do i do so?
What I've Tried:
I attempted to calculate the playing clock time using ...