forked from appsembler/xblock-video
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See CHANGELOG.md for release details.
- Loading branch information
Showing
79 changed files
with
4,247 additions
and
1,716 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
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,5 @@ | ||
[pydocstyle] | ||
# Open edX style dictates to always use multiline docstrings (reason to exclude D200 error code). | ||
# Multi-line docstring summary should start at the second line (D203). | ||
# 1 blank line should not be required before class docstring (D212). | ||
ignore = D200,D203,D212 |
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 |
---|---|---|
@@ -1,29 +1,41 @@ | ||
language: python | ||
sudo: false | ||
python: | ||
- "2.7.10" | ||
- "2.7.13" | ||
- 2.7.10 | ||
- 2.7.13 | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- ruby1.9.3 | ||
# Install binary package for lxml to speed up build | ||
- python-lxml | ||
|
||
cache: | ||
pip: true | ||
directories: | ||
- node_modules # NPM packages | ||
- node_modules # NPM packages | ||
|
||
before_install: | ||
# Install latest stable NodeJS version. Required for eslint. | ||
- nvm install stable | ||
# Install binary package for lxml to speed up build | ||
- sudo apt-get -qq update | ||
- sudo apt-get install -y python-lxml | ||
# Install latest stable NodeJS version. Required for eslint. | ||
- nvm install stable | ||
- gem install coveralls-lcov | ||
|
||
install: | ||
- make dev-install | ||
|
||
before_script: | ||
- make deps-test | ||
# Install eslint, eslint-config-edx and their dependencies | ||
- make tools | ||
# Install bower, eslint, eslint-config-edx-es5 and their dependencies | ||
- make tools | ||
- make deps-test | ||
|
||
script: | ||
- make quality-py | ||
- make quality-js | ||
- make test-py | ||
- make quality-py | ||
- make quality-js | ||
- make test | ||
|
||
after_success: | ||
- coveralls | ||
- make coveralls | ||
notifications: | ||
slack: | ||
secure: BmwAxUvohFcruAoIjqcw35q7xbWWl7BV+ABaWO4Fxc+hC20tPNzQUjMLgzYboMtaiBLncMpiFhriv2KCQs6khKtnertZPKfhG01FP/vQ2FPYF3p5K2ZvCsfkTeSKKtohmH0rMCuuRu/Wt3ACbcX/9KMc7Lrn0knaUyqTApJm24HVCkCsnL5MDkZT3AxnuCURdYaq+BTiPWJnmyZMrRNxGH/WcperVy0T4LxYnhpg6xGnyfyip0IDXOGp77pn5LcDiqhE3ISthH170arGxWyBvwLdeTSqTN8hViGqOVe9oBy5GrdNvNsqVRN6MLONSQNOnNT8P+F1m7h7sRohvFG0ZcJK6spKA7QhUGk8Wj6Kp5hdOK/cAd786HfusdJkRLUgyW1TAj/LsUE/z5VQgxoN8GtjSLtEjiHLTW1ueGxJ48LODFjzT7MptUyvSf98EK9emVbgYoGE2d0HkXDv9hqF63n8yGc7rGMNvS0I0e9nQ+9QdPjkT4KTNpJgiRDtrFK/8/P4hmgmEYXvC1//t5H+BrVMymH2v/+jvwn56zb+RbvK8yt7wHLgtENxEECQWy6QgYXUry3AfMOsaBOpVCW/ATCotM1+lkyjb0YLTmRNuTfJx2hvUc1gxJPr1WUZur4Cz87fVWUM9k4aFD9gKeR1JOTMc71leQNAmdYVDI0ypMc= |
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,15 @@ | ||
This is a joint effort of Appsembler and Raccoon Gang to enhance | ||
Open edX ecosystem. We welcome open-source community to add more | ||
video-backends as well as fix issues. | ||
|
||
Alexander Kryklia <kryklia@gmail.com> | ||
Alexander Marenich <alexander.marenich@raccoongang.com> | ||
Alexander Zayats <alexander.zayats@gmail.com> | ||
Anton Stupak <anton.stupak@raccoongang.com> | ||
Andrey Doroshenko <dorosshh@gmail.com> | ||
Dmitry Shyshov <xahgmah@gmail.com> | ||
Nate Aune <nate@noderabbit.com> | ||
Olena Persianova <olena.persianova@raccoongang.com> | ||
Valera Rozuvan <valera.rozuvan@gmail.com> | ||
Vladas Tamoshaitis <amd.vladas@gmail.com> | ||
Vladimir Ganzii <ganziy.vova@gmail.com> |
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,51 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [0.5.0] - 2017-03-14 | ||
|
||
### Added | ||
|
||
- Html5 video support. | ||
- Manual uploaded transcripts validation: file extension and size. | ||
- Code stabilization: | ||
- Python unit tests. | ||
- JS unit tests foundation. | ||
|
||
### Changed | ||
|
||
- UI improvements in Studio: | ||
- Split Video XBlock settings into Basic & Advanced tabs. | ||
- Display only fields relevant to selected video. | ||
- Move all python dependencies into setup.py to simplify XBlock installation. | ||
|
||
### Fixed | ||
|
||
- Various bugs. | ||
|
||
## [0.4.0] - 2017-02-07 | ||
|
||
### Added | ||
|
||
- Brightcove content protection and auto-quality | ||
- On API authentication uploads two custom Ingest Profiles: | ||
- Creates new API credentials with required permissions | ||
- HLS for auto quality | ||
- HLSe for auto qualify & encryption | ||
|
||
- Add new UI controls after a user has authenticated against Brightcove API: | ||
- View video tech info | ||
- Send video re-transcode request on a Brightcove side | ||
|
||
- Default transcripts upload | ||
- Allows to fetch transcripts from the platform and store them into XBlock. | ||
- Supports: Brightcove, Youtube & Wistia. | ||
- Brightcove & Wistia require API authentication before default transcripts | ||
upload can work. | ||
|
||
### Fixed | ||
|
||
- Various bugfixes and improvements. |
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,17 @@ | ||
{ | ||
"devDependencies": { | ||
"bower": "^1.8.0", | ||
"eslint": "^2.12.0", | ||
"eslint-config-edx-es5": "2.0.0", | ||
"eslint-plugin-dollar-sign": "0.0.5", | ||
"eslint-plugin-import": "^1.9.2", | ||
"jasmine-core": "^2.5.2 ", | ||
"karma": "^1.5.0", | ||
"karma-jasmine": "^1.1.0", | ||
"karma-phantomjs-launcher": "^1.0.2", | ||
"karma-coverage": "^1.1.1", | ||
"karma-coveralls": "^1.1.2", | ||
"karma-chrome-launcher": "^2.0.0" | ||
|
||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.