Giter Site home page Giter Site logo

esl-facebook-stream's People

Contributors

arn7av avatar jpjagt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

esl-facebook-stream's Issues

Add shortcut for player

Please provide a feature for keyboard shortcut on the video player.
Mostly needed "space" for "pause", and "f" for "fullscreen". Probably "m" for "mute" might good as well.

Video overflowing screen resolution in theater mode on UWQHD aspect ratios

First pic: Scrolled up; playback controls not visible, top of stream not visible. One of the UI buttons visible in top right corner (very minor)
scrolled up

Second pic: Scrolled down; playback controls visible
scrolled down

I'll get back to you when I find another weird aspect ratio/screen resolution to test it out on ;d

Theatre Mode

Fullscreen video goes halfway offscreen

The fullscreen Dash player seems to have some issues when the control bar goes off screen. Didn't happen before dark mode was implemented.

MBPr, 2017 model.
Chrome Canary Version 68.0.3398.0

screen shot 2018-05-18 at 22 55 24

Audio only Stream

Looking for a feature to be implemented that will allow audio only bandwidth, similar to the twitch app.

image

This would allow users on mobile devices to listen to the stream at very low bandwidth usage.

Fullscreen aspect ratio not locked to video

When going full screen on displays that are not 16:9, the video will be cropped to the display aspect ratio instead of using black bars. Thats probably because of the player using all of the display width (e.g. 3440px) and then cropping the vertical remains. Might be related to #3 ? Possible fix is locking the player to the vertical or horizontal width, depending on which is smaller compared to the video.

Hide controlBar after mouse leaves video element in theatre mode

In theatre mode, it would be nice if the controlBar gets hidden when the mouse isn't moving/outside of the video element, preferably with a small delay (+-0.5s) after the last mouse activity.

This behaviour is already natively implemented in fullscreen mode, so one possibility is to adapt from that code.

Custom JS could also be written, and could look something like the code below (using jQuery).
This still needs a check whether theatre mode is toggled on.

// hide video controls when not on the video, but not on mobile
var delay = 500; // ms
var $videoControls = // jquery controlBar selector
var $videoContainer = // jquery video container selector

if (window.innerWidth > 450) {
  $videoContainer.mouseenter(function() {
    $videoControls.fadeIn(200);
  });
  $videoContainer.mouseleave(function() {
    setTimeout(function() { $videoControls.fadeOut(200) }, delay);
  });
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.