question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Suggestions for improvement

See original GitHub issue
  1. More events like video stop*/skip/progress/end/enter fullscreen/exit fullscreen/format changed
  • ability to add stop button
  1. context menu API to add some button(with callbacks) and remove defaults

  2. if user changes format, it will be saved in cookies or storage, and the next page video will automatically change to chosen format. Same changes apply to volume, speed, and theatre mode.

  3. double click for fullscreen. Example code for realize this function:

var clickHandlers = [];
player.on('click', function(e) {
                    clickHandlers.push(setTimeout(function() {
                        player.togglePlayPause();
                    }, 300));
                
            });

            player.on('dblclick', function(e) {
                
                    player.fullscreen();
                
                clickHandlers.forEach(function(handler) {
                    clearTimeout(handler);
                });
                clickHandlers = [];
            });
  1. Ability to add/show custom html when video finished (for show related videos)

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:10 (8 by maintainers)

github_iconTop GitHub Comments

1reaction
cradonncommented, May 3, 2018

Thanks for your suggestions @gibigate, they will be reviewed and added to our our backlog if deemed useful.

As FluidPlayer is open source, I would encourage you to get involved and contribute to the project, we are happy to review community contributions.

Can you provide some more context for the bug you mention (point 8) above please? Additional screenshots and player configuration would also be useful.

0reactions
Addvilzcommented, May 20, 2020

This ticket is effectively 8 or more different issues/feature requests. If any of them are still relevant, please open new tickets for them, a ticket per each individual issue please. Issues that contain more than one actual issue are unmanageable.

Read more comments on GitHub >

github_iconTop Results From Across the Web

24 Incredible Ways To Improve Your Work Performance in 2023
Incorporate healthy diet choices in your meals. · Limit sugary drinks and avoid ultra-processed foods. · Exercise daily. · Take frequent short breaks...
Read more >
11 Company Improvement Suggestions With Major Impact
11 Company Improvement Suggestions With Major Impact · 1. Allow for Employee Autonomy · 2. Make Use of Employee Feedback · 3. Assist...
Read more >
Suggestions for Improvement in a Company: 20 Ways To ...
20 suggestions for improvement in a company · 1. Make respect a cornerstone · 2. Create clear company values · 3. Generate positive...
Read more >
21 Ways To Improve Work Performance and Continuously Grow
1 Set the right expectations · 2 Have milestones and goals · 3 Organize, plan and prioritize · 4 Avoid distractions · 5...
Read more >
What Suggestions Would You Make to Assist an Employee in ...
One of the ways you can improve your performance is to manage your time better so you can get more done. Prioritize tasks...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found