All Projects → JimmyVV → Httplive

JimmyVV / Httplive

Licence: apache-2.0
http-chunked for live, easily implement and combine

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Httplive

cast control
📺 Control Chromecasts from Linux and D-Bus
Stars: ✭ 443 (+295.54%)
Mutual labels:  playback
Shaka Player
JavaScript player library / DASH & HLS client / MSE-EME player
Stars: ✭ 5,386 (+4708.93%)
Mutual labels:  playback
Lovetracker
A module tracker written in lua/LöVE.
Stars: ✭ 38 (-66.07%)
Mutual labels:  playback
Bettervideoplayer
Video playback on Android, made better in Kotlin, wrapping around the stock MediaPlayer API.
Stars: ✭ 266 (+137.5%)
Mutual labels:  playback
Mediaplayer Extended
Android MediaPlayer API-compatible media player library with exact seek and DASH support
Stars: ✭ 406 (+262.5%)
Mutual labels:  playback
Playbackop
android操作录制、操作回放
Stars: ✭ 18 (-83.93%)
Mutual labels:  playback
foobar2000-web-ui
Control Foobar2000 from a (remote) web browser
Stars: ✭ 25 (-77.68%)
Mutual labels:  playback
Hls.js
HLS.js is a JavaScript library that plays HLS in browsers with support for MSE.
Stars: ✭ 10,791 (+9534.82%)
Mutual labels:  playback
Chromecast mpris
📺 Control Chromecasts from Linux and D-Bus
Stars: ✭ 413 (+268.75%)
Mutual labels:  playback
Class bot
An Automated Background Python bot that notifies you during your classes when your name is called or the keywords "present"/"attendance" are called out.
Stars: ✭ 36 (-67.86%)
Mutual labels:  playback
Djv
Professional media review software for VFX, animation, and film production
Stars: ✭ 282 (+151.79%)
Mutual labels:  playback
Howler.js
Javascript audio library for the modern web.
Stars: ✭ 19,425 (+17243.75%)
Mutual labels:  playback
Waveform Playlist
Multitrack Web Audio editor and player with canvas waveform preview. Set cues, fades and shift multiple tracks in time. Record audio tracks or provide audio annotations. Export your mix to AudioBuffer or WAV! Project inspired by Audacity.
Stars: ✭ 919 (+720.54%)
Mutual labels:  playback
Straas-android-sdk-sample
Straas Android SDK samples and documentation
Stars: ✭ 12 (-89.29%)
Mutual labels:  playback
Youtube Extension
🔴YouTube Extension🧰>80 Features ⭐Please document, code or donate📌Tidy📌Longest-standing(2012)(Users>350000)⋮🎞️🎛️🎧⚙️🎬🔊☕🎨🧩🧪📈⏯️(Player: Repeat Screenshot Rotate; Hide related video distraction. Always expand video Description. Playback speed. Video Quality bandwidth H.264 electricity. Player Size Full Window. Themes Customization. Statistics. Reverse Playlist YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube Youtube enhancer YouTube app YouTube video YouTube YouTube YouTube api v3 YouTube playback YouTube player VP8 VP9 AV1 vidIQ tubebuddy download adblocker adblock ads sponsorblock addon youtube music ⭐ youtube premium css css4 html5 ytdl youtube-dl invidious iridium ParticleCore youtube+ youtube++ youtube-plus maia-yt youtube nonstop youtube control center vlogger vlog h264ify h264 m.youtube.com music.youtube.com studio.youtube youtube mobile youtube studio ⭐ kids Vanced gaming.youtube.com gaming youtubecenter freetube lite-youtube-embed newpipe youtube-dl-gui mps-youtube nuclear pytube awesome youtubers youtube downloader 8k 4k 60fps 30fps youtubeexplode vidgear k-lite tubebuddy adobe apple ios iphone design simplify ffmpeg premiere designer annoyance youtube upload
Stars: ✭ 1,027 (+816.96%)
Mutual labels:  playback
termbacktime
Terminal recording and playback.
Stars: ✭ 33 (-70.54%)
Mutual labels:  playback
Redux Bug Reporter
🐛 A bug reporter and bug playback tool for redux. 🐛
Stars: ✭ 683 (+509.82%)
Mutual labels:  playback
Miniaudio
Single file audio playback and capture library written in C.
Stars: ✭ 1,889 (+1586.61%)
Mutual labels:  playback
Unityplugin Avprovideo
AVPro Video is a multi-platform Unity plugin for advanced video playback
Stars: ✭ 53 (-52.68%)
Mutual labels:  playback
Exoplayback
Intro to Media Playback using ExoPlayer
Stars: ✭ 24 (-78.57%)
Mutual labels:  playback

Introduction

When the MSE technology is accepted by most of browser, front-end developers can do much more multimedia things. And now, more than 80% browser has supported it. In China, X5, the largest market share of the kernel, will support it in early 2018. httplive achieves live stream playback of httpflv protocol depending on MSE. Based on the loaders idea, it decouples and encapsulates modules in httpflv, like HttpChunked, MuxController, MSEController. If you want to customize you owner player, you just need to simply follow the relevant standards. And this is the main idea:

httplive is not a library, but a standards of front-end live stream playback

DEMO

HTTPLive demo

Languages

中文版请参考:readme_cn.md

Features

  • Customization
  • Playrate playback
  • High effective A/V sync algorithm
  • Easily

Install

npm install httplive --save

Get Started

import HTTPLive from 'httplive';

let video = document.getElementById('videoTag');

let flv = new HTTPLive({
  video
});

video.addEventListener('canplaythrough',()=>{
  video.play();
},false);

flv.send('https://xxx.flv');

If you want to use custom modules to replace existing modules, you can simply do like this:

import {CustomPlayer} from 'httplive';
import WebSocketChunked from 'custom';

// Replace HTTPChunked module by WebSocketChunked. 

const HTTPLive = CustomPlayer({
    HTTPChunked: WebSocketChunked
});

let flv = new HTTPLive({
  video
});
...

Later, I will show you about the standard protocols of these modules in wiki.

API

api.md

Contact

If you are interested in MSE and live stream playback, you can scan the QR_code and join us in QQ.

QR_code

After you scan it, you will receive a question and its answer is MSE

For these people who don't have a QQ account,you can send me a email and keep contact.

When you meet some problem about httplive, you can show us issue. Httplive is an open-source repo,so we welcome people to check and optimze it and contribute your PR

LICENSE

httplive is under the Apache License. See the LICENSE file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].