forked from videojs/video.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'stable' of https://github.com/videojs/video.js into stable
* 'stable' of https://github.com/videojs/video.js: (22 commits) Added line to changelog for 4.10.1 Release 4.10.1 Removed alert... Release 4.10.0 @heff turned on the custom html controls for touch devices. closes videojs#1617 updated options to include sans-children, and included self-hosted font blurb added CORS information to tracks guide. Fixes videojs#837 doc updates + readme quick start updated options guide to include components @heff Added the ability to set options for child components directly in the parent options. closes videojs#1599 @DevGavin added a Simplified Chinese translation. closes videojs#1593 @mmcc fixed an issue with the VolumeButton assuming it was vertical by default. closes videojs#1592 @heff enhanced the event listener API to allow for auto-cleanup of listeners on other componenets and elements. closes videojs#1588 @mmcc fixed an issue where errors on source tags could get missed. closes videojs#1575 Added doc for remaining time and removed onWaitEnd doc maybe actually check for keyLocation Update languages.md @heff updated the poster to use CSS styles to display; fixed the poster not showing if not originally set. closes videojs#1568 Release 4.9.1 Bumped to videojs-swf v4.5.1 to fix a data sanitization issue. closes videojs#1587 ...
- Loading branch information
Showing
112 changed files
with
16,096 additions
and
2,464 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ | |
"process", | ||
|
||
"PlayerTest", | ||
"TestHelpers", | ||
"asyncTest", | ||
"deepEqual", | ||
"equal", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
WEBVTT | ||
00:00.700 --> 00:04.110 | ||
Captions describe all relevant audio for the hearing impaired. | ||
[ Heroic music playing for a seagull ] | ||
|
||
00:04.500 --> 00:05.000 | ||
[ Splash!!! ] | ||
|
||
00:05.100 --> 00:06.000 | ||
[ Sploosh!!! ] | ||
|
||
00:08.000 --> 00:09.225 | ||
[ Splash...splash...splash splash splash ] | ||
|
||
00:10.525 --> 00:11.255 | ||
[ Splash, Sploosh again ] | ||
|
||
00:13.500 --> 00:14.984 | ||
Dolphin: eeeEEEEEeeee! | ||
|
||
00:14.984 --> 00:16.984 | ||
Dolphin: Squawk! eeeEEE? | ||
|
||
00:25.000 --> 00:28.284 | ||
[ A whole ton of splashes ] | ||
|
||
00:29.500 --> 00:31.000 | ||
Mine. Mine. Mine. | ||
|
||
00:34.300 --> 00:36.000 | ||
Shark: Chomp | ||
|
||
00:36.800 --> 00:37.900 | ||
Shark: CHOMP!!! | ||
|
||
00:37.861 --> 00:41.193 | ||
EEEEEEOOOOOOOOOOWHALENOISE | ||
|
||
00:42.593 --> 00:45.611 | ||
[ BIG SPLASH ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Video.js | HTML5 Video Player</title> | ||
|
||
<!-- Chang URLs to wherever Video.js files will be hosted --> | ||
<link href="video-js.css" rel="stylesheet" type="text/css"> | ||
<!-- video.js must be in the <head> for older IEs to work. --> | ||
<script src="video.js"></script> | ||
|
||
<!-- Unless using the CDN hosted version, update the URL to the Flash SWF --> | ||
<script> | ||
videojs.options.flash.swf = "video-js.swf"; | ||
</script> | ||
|
||
|
||
</head> | ||
<body> | ||
|
||
<video id="example_video_1" class="video-js vjs-default-skin" controls preload="none" width="640" height="264" | ||
poster="http://video-js.zencoder.com/oceans-clip.png" | ||
data-setup="{}"> | ||
<source src="http://video-js.zencoder.com/oceans-clip.mp4" type='video/mp4' /> | ||
<source src="http://video-js.zencoder.com/oceans-clip.webm" type='video/webm' /> | ||
<source src="http://video-js.zencoder.com/oceans-clip.ogv" type='video/ogg' /> | ||
<track kind="captions" src="demo.captions.vtt" srclang="en" label="English"></track><!-- Tracks need an ending tag thanks to IE9 --> | ||
<track kind="subtitles" src="demo.captions.vtt" srclang="en" label="English"></track><!-- Tracks need an ending tag thanks to IE9 --> | ||
<p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p> | ||
</video> | ||
|
||
</body> | ||
</html> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
videojs.addLanguage("de",{ | ||
"Play": "Wiedergabe", | ||
"Pause": "Pause", | ||
"Current Time": "Aktueller Zeitpunkt", | ||
"Duration Time": "Dauer", | ||
"Remaining Time": "Verbleibende Zeit", | ||
"Stream Type": "Streamtyp", | ||
"LIVE": "LIVE", | ||
"Loaded": "Geladen", | ||
"Progress": "Status", | ||
"Fullscreen": "Vollbild", | ||
"Non-Fullscreen": "Kein Vollbild", | ||
"Mute": "Ton aus", | ||
"Unmuted": "Ton ein", | ||
"Playback Rate": "Wiedergabegeschwindigkeit", | ||
"Subtitles": "Untertitel", | ||
"subtitles off": "Untertitel aus", | ||
"Captions": "Untertitel", | ||
"captions off": "Untertitel aus", | ||
"Chapters": "Kapitel", | ||
"You aborted the video playback": "Sie haben die Videowiedergabe abgebrochen.", | ||
"A network error caused the video download to fail part-way.": "Der Videodownload ist aufgrund eines Netzwerkfehlers fehlgeschlagen.", | ||
"The video could not be loaded, either because the server or network failed or because the format is not supported.": "Das Video konnte nicht geladen werden, da entweder ein Server- oder Netzwerkfehler auftrat oder das Format nicht unterstützt wird.", | ||
"The video playback was aborted due to a corruption problem or because the video used features your browser did not support.": "Die Videowiedergabe wurde entweder wegen eines Problems mit einem beschädigten Video oder wegen verwendeten Funktionen, die vom Browser nicht unterstützt werden, abgebrochen.", | ||
"No compatible source was found for this video.": "Für dieses Video wurde keine kompatible Quelle gefunden." | ||
}); |
Oops, something went wrong.