├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── __init__.py ├── doc └── img │ └── studio-edit.png ├── locale ├── manage.py ├── ooyala_player ├── __init__.py ├── brightcove_player.py ├── conf │ └── locale ├── ooyala_player.py ├── public │ ├── css │ │ └── brightcove_player.css │ └── js │ │ └── brightcove_player.js ├── settings.py ├── templates │ └── html │ │ ├── 3play_transcript.html │ │ └── brightcove_player.html ├── transcript.py ├── translations │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── text.mo │ │ │ └── text.po │ ├── config.yaml │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── text.mo │ │ │ └── text.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── text.mo │ │ │ └── text.po │ ├── eo │ │ └── LC_MESSAGES │ │ │ ├── text.mo │ │ │ └── text.po │ ├── es_419 │ │ └── LC_MESSAGES │ │ │ ├── text.mo │ │ │ └── text.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── text.mo │ │ │ └── text.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ ├── text.mo │ │ │ └── text.po │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ ├── text.mo │ │ │ └── text.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── text.mo │ │ │ └── text.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── text.mo │ │ │ └── text.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ ├── text.mo │ │ └── text.po └── utils.py ├── pylintrc ├── requirements-dev.txt ├── requirements.txt ├── run_tests.py ├── setup.py └── tests ├── __init__.py ├── requirements.txt ├── test_ooyala_player.py ├── test_overlay.py ├── test_tokens.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/img/studio-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/doc/img/studio-edit.png -------------------------------------------------------------------------------- /locale: -------------------------------------------------------------------------------- 1 | ooyala_player/translations/ -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/manage.py -------------------------------------------------------------------------------- /ooyala_player/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ooyala_player/brightcove_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/brightcove_player.py -------------------------------------------------------------------------------- /ooyala_player/conf/locale: -------------------------------------------------------------------------------- 1 | ../translations -------------------------------------------------------------------------------- /ooyala_player/ooyala_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/ooyala_player.py -------------------------------------------------------------------------------- /ooyala_player/public/css/brightcove_player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/public/css/brightcove_player.css -------------------------------------------------------------------------------- /ooyala_player/public/js/brightcove_player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/public/js/brightcove_player.js -------------------------------------------------------------------------------- /ooyala_player/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/settings.py -------------------------------------------------------------------------------- /ooyala_player/templates/html/3play_transcript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/templates/html/3play_transcript.html -------------------------------------------------------------------------------- /ooyala_player/templates/html/brightcove_player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/templates/html/brightcove_player.html -------------------------------------------------------------------------------- /ooyala_player/transcript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/transcript.py -------------------------------------------------------------------------------- /ooyala_player/translations/ar/LC_MESSAGES/text.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/ar/LC_MESSAGES/text.mo -------------------------------------------------------------------------------- /ooyala_player/translations/ar/LC_MESSAGES/text.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/ar/LC_MESSAGES/text.po -------------------------------------------------------------------------------- /ooyala_player/translations/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/config.yaml -------------------------------------------------------------------------------- /ooyala_player/translations/de_DE/LC_MESSAGES/text.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/de_DE/LC_MESSAGES/text.mo -------------------------------------------------------------------------------- /ooyala_player/translations/de_DE/LC_MESSAGES/text.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/de_DE/LC_MESSAGES/text.po -------------------------------------------------------------------------------- /ooyala_player/translations/en/LC_MESSAGES/text.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/en/LC_MESSAGES/text.mo -------------------------------------------------------------------------------- /ooyala_player/translations/en/LC_MESSAGES/text.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/en/LC_MESSAGES/text.po -------------------------------------------------------------------------------- /ooyala_player/translations/eo/LC_MESSAGES/text.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/eo/LC_MESSAGES/text.mo -------------------------------------------------------------------------------- /ooyala_player/translations/eo/LC_MESSAGES/text.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/eo/LC_MESSAGES/text.po -------------------------------------------------------------------------------- /ooyala_player/translations/es_419/LC_MESSAGES/text.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/es_419/LC_MESSAGES/text.mo -------------------------------------------------------------------------------- /ooyala_player/translations/es_419/LC_MESSAGES/text.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/es_419/LC_MESSAGES/text.po -------------------------------------------------------------------------------- /ooyala_player/translations/fr/LC_MESSAGES/text.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/fr/LC_MESSAGES/text.mo -------------------------------------------------------------------------------- /ooyala_player/translations/fr/LC_MESSAGES/text.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/fr/LC_MESSAGES/text.po -------------------------------------------------------------------------------- /ooyala_player/translations/ja_JP/LC_MESSAGES/text.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/ja_JP/LC_MESSAGES/text.mo -------------------------------------------------------------------------------- /ooyala_player/translations/ja_JP/LC_MESSAGES/text.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/ja_JP/LC_MESSAGES/text.po -------------------------------------------------------------------------------- /ooyala_player/translations/ko_KR/LC_MESSAGES/text.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/ko_KR/LC_MESSAGES/text.mo -------------------------------------------------------------------------------- /ooyala_player/translations/ko_KR/LC_MESSAGES/text.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/ko_KR/LC_MESSAGES/text.po -------------------------------------------------------------------------------- /ooyala_player/translations/pl/LC_MESSAGES/text.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/pl/LC_MESSAGES/text.mo -------------------------------------------------------------------------------- /ooyala_player/translations/pl/LC_MESSAGES/text.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/pl/LC_MESSAGES/text.po -------------------------------------------------------------------------------- /ooyala_player/translations/pt_BR/LC_MESSAGES/text.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/pt_BR/LC_MESSAGES/text.mo -------------------------------------------------------------------------------- /ooyala_player/translations/pt_BR/LC_MESSAGES/text.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/pt_BR/LC_MESSAGES/text.po -------------------------------------------------------------------------------- /ooyala_player/translations/zh_CN/LC_MESSAGES/text.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/zh_CN/LC_MESSAGES/text.mo -------------------------------------------------------------------------------- /ooyala_player/translations/zh_CN/LC_MESSAGES/text.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/translations/zh_CN/LC_MESSAGES/text.po -------------------------------------------------------------------------------- /ooyala_player/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/ooyala_player/utils.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/run_tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_ooyala_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/tests/test_ooyala_player.py -------------------------------------------------------------------------------- /tests/test_overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/tests/test_overlay.py -------------------------------------------------------------------------------- /tests/test_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/tests/test_tokens.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openedx-unsupported/xblock-ooyala/HEAD/tests/utils.py --------------------------------------------------------------------------------