Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .editorconfig
4 changes: 4 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "@silvermine/eslint-config/node",
"ignorePatterns": ["dist"]
}
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Logs
logs
*.log
npm-debug.log

# Runtime data
pids
*.pid
*.seed

# build directory
dist

# Coverage directory used by tools like istanbul
coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

# IDE
**/.idea

# VIM
.*.sw?

# OS
.DS_Store
.tmp

.vscode
13 changes: 13 additions & 0 deletions .markdownlint-cli2.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use strict';

const sharedStandards = require(`@silvermine/standardization/.markdownlint-cli2.shared.cjs`);

module.exports = {
...sharedStandards,
globs: [
...sharedStandards.globs,
],
ignores: [
...sharedStandards.ignores,
]
};
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20.12.2
1 change: 1 addition & 0 deletions .stylelintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
extends: ./node_modules/@silvermine/standardization/.stylelintrc.yml
4 changes: 4 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Changelog

All notable changes to this project will be documented in this file.
See [our coding standards][commit-messages] for commit guidelines.
18 changes: 18 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Copyright (c) 2019 Jeremy Thomerson

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 changes: 31 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
# videojs-remoteplayback
# videojs-remoteplayback

## What

A Video.js plugin that enables remote playback capabilities for casting video content to
Chromecast and AirPlay devices.

## Why

Modern users expect seamless video experiences across all their devices. Whether they're
watching on a laptop and want to cast to their TV via Chromecast, or streaming from an
iPhone to an Apple TV using AirPlay, remote playback has become an essential feature for
video applications.

While Video.js provides excellent video playback capabilities, it lacks built-in support
for casting to external devices. This plugin bridges that gap by:

* **Enhancing User Experience**: Allows users to easily cast videos to their preferred
viewing devices
* **Cross-Platform Compatibility**: Supports both Google's Chromecast and Apple's
AirPlay ecosystems
* **Developer Convenience**: Provides a simple, unified API for implementing casting
functionality
* **Future-Proofing**: Built with modern web standards and TypeScript for
maintainability


## License

This software is released under the MIT license. See [the license file](LICENSE) for
more details.
5 changes: 5 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
'use strict';

module.exports = {
extends: [ '@silvermine/standardization/commitlint.js' ],
};
4 changes: 4 additions & 0 deletions global.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
declare module '@silvermine/video.js' {
import videojs from 'video.js';
export = videojs;
}
Loading