Questions tagged [http-live-streaming]

HTTP Live Streaming is a method of media streaming that consists of downloading segments of a mpeg2ts file, containing video (H.264) and/or audio (AAC or MP3). The specification was introduced by Apple and is widely used in iOS.

HTTP Live Streaming is a way to send audio and video over HTTP from a web server to client software on the desktop or to iOS-based devices.

HTTP Live Streaming sends audio and video as a series of small files, typically of about 10 seconds duration, called media segment files. An index file, or playlist, gives the clients the URLs of the media segment files. The playlist can be periodically refreshed to accomodate live broadcasts, where media segment files are constantly being produced.

References:

2691 questions
1
vote
1 answer

FFMpeg hls_time accuracy

I'm using ffmpeg library in an ios application to convert mp4 video to HLS. I want to keep the ts file duration as exactly 10 seconds. So I put the following code. av_opt_set_int(formatContext->priv_data, "hls_time", 10,…
Vishnu Kumar. S
  • 1,797
  • 1
  • 15
  • 35
1
vote
0 answers

Is transmitting PES(Packetised Elementary Stream) better or MPEG-TS in Live Streaming from mobile (IOS) to server

I am developing a Live Streaming application where mobile application (iOS/Android) records the video and Audio and then encodes raw pixels to h.264 and AAC using VideoToolBox and AudioToolBox, these encoded pixels are converted to PES (Packetized…
Shiva Reddy
  • 456
  • 1
  • 7
  • 26
1
vote
0 answers

How to get a thumbnail of a live stream?

I am currently using MediaMetadataRetriever.getFrameAtTime on Android to get thumbnails of videos and it is working great except for live streams (m3u8). Using the m3u8 directly doesn't seem to work and I have managed to get a bitmap back for a .ts…
1
vote
1 answer

ExoPlayer and HLS Streaming

I am writing an Android application that plays a large MP3 file over the web. These files are usually about an hour or so and I've been getting some really inconsistent behavior with the stream cutting off in the middle in some cases. To fix this, I…
Evan Ruff
  • 582
  • 7
  • 21
1
vote
1 answer

Jwplayer mute doesn't work with HLS stream

I'm trying to implement mute button on HLS stream in Jwplayer. I found this example on official site. I've just copied code: