├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .template-lintrc.js ├── .travis.yml ├── .watchmanconfig ├── Dockerfile ├── README.md ├── app ├── adapters │ └── application.js ├── app.js ├── components │ ├── .gitkeep │ ├── create-job.js │ ├── file-upload.js │ ├── forms │ │ ├── login-form.js │ │ └── register-form.js │ ├── help-modal.js │ ├── respeak-modal.js │ ├── transcription-card.js │ ├── video-player.js │ ├── wave-visualiser-standalone.js │ ├── wave-visualiser.js │ └── wave-visulaiser-respeak.js ├── controllers │ ├── .gitkeep │ ├── application.js │ ├── index.js │ ├── jobs │ │ └── create.js │ ├── login.js │ ├── my-transcriptions │ │ └── list.js │ ├── respeak │ │ └── list.js │ └── users │ │ └── index.js ├── helpers │ ├── .gitkeep │ └── transcribing-progress.js ├── index.html ├── initializers │ └── router.js ├── models │ ├── .gitkeep │ ├── job.js │ ├── role.js │ ├── transcription.js │ └── user.js ├── resolver.js ├── router.js ├── routes │ ├── .gitkeep │ ├── application.js │ ├── editor.js │ ├── editor │ │ └── list.js │ ├── index.js │ ├── jobs.js │ ├── jobs │ │ ├── create.js │ │ ├── edit.js │ │ └── index.js │ ├── login.js │ ├── my-transcriptions.js │ ├── my-transcriptions │ │ ├── index.js │ │ └── list.js │ ├── register.js │ ├── respeak.js │ ├── respeak │ │ └── list.js │ ├── ui-testing.js │ └── users │ │ └── index.js ├── serializers │ ├── application.js │ └── user.js ├── services │ ├── auth-manager.js │ ├── loader.js │ └── settings.js ├── styles │ └── app.css ├── templates │ ├── application.hbs │ ├── components │ │ ├── .gitkeep │ │ ├── create-job.hbs │ │ ├── file-upload.hbs │ │ ├── forms │ │ │ ├── login-form.hbs │ │ │ └── register-form.hbs │ │ ├── help-modal.hbs │ │ ├── respeak-modal.hbs │ │ ├── transcription-card.hbs │ │ ├── video-player.hbs │ │ ├── wave-visualiser-standalone.hbs │ │ ├── wave-visualiser.hbs │ │ └── wave-visulaiser-respeak.hbs │ ├── editor.hbs │ ├── editor │ │ └── list.hbs │ ├── index.hbs │ ├── jobs.hbs │ ├── jobs │ │ ├── create.hbs │ │ ├── edit.hbs │ │ └── index.hbs │ ├── login.hbs │ ├── my-transcriptions.hbs │ ├── my-transcriptions │ │ └── list.hbs │ ├── register.hbs │ ├── respeak.hbs │ ├── respeak │ │ └── list.hbs │ ├── ui-testing.hbs │ └── users │ │ └── index.hbs └── transforms │ └── moment.js ├── config ├── .env.example ├── dotenv.js ├── environment.js ├── optional-features.json └── targets.js ├── docs ├── ideas.MD └── images │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 3.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ └── demo.gif ├── ember-cli-build.js ├── fastboot └── initializers │ └── ajax.js ├── media └── Singapores 21st-Century.mp3 ├── package.json ├── public ├── assets │ └── images │ │ ├── D.svg │ │ ├── E.svg │ │ ├── Enter.png │ │ ├── I.svg │ │ ├── M.png │ │ ├── alt.svg │ │ ├── audio-file.png │ │ ├── ctrl.svg │ │ ├── down.svg │ │ ├── enter.svg │ │ ├── j.svg │ │ ├── k.svg │ │ ├── left.svg │ │ ├── ntu-logo.png │ │ ├── ntu-logo.svg │ │ ├── right.svg │ │ ├── space.svg │ │ ├── up.svg │ │ └── user.png └── robots.txt ├── sample-input.json ├── sample-ouput.json ├── screenshot.png ├── scripts └── fastboot-server.js ├── testem.js ├── tests ├── helpers │ └── .gitkeep ├── index.html ├── integration │ ├── .gitkeep │ └── components │ │ ├── create-job-test.js │ │ ├── file-upload-test.js │ │ ├── forms │ │ ├── login-form-test.js │ │ └── register-form-test.js │ │ ├── help-modal-test.js │ │ ├── respeak-modal-test.js │ │ ├── transcription-card-test.js │ │ ├── video-player-test.js │ │ ├── wave-visualiser-standalone-test.js │ │ ├── wave-visualiser-test.js │ │ └── wave-visulaiser-respeak-test.js ├── test-helper.js └── unit │ ├── .gitkeep │ ├── adapters │ └── application-test.js │ ├── controllers │ ├── application-test.js │ ├── index-test.js │ ├── login-test.js │ └── respeak │ │ └── list-test.js │ ├── models │ ├── job-test.js │ └── user-test.js │ ├── routes │ ├── application-test.js │ ├── editor-test.js │ ├── editor │ │ └── list-test.js │ ├── index-test.js │ ├── jobs-test.js │ ├── jobs │ │ ├── create-test.js │ │ ├── edit-test.js │ │ └── index-test.js │ ├── login-test.js │ ├── my-transcriptions │ │ ├── index-test.js │ │ └── list-test.js │ ├── respeak-test.js │ ├── respeak │ │ └── list-test.js │ └── ui-testing-test.js │ ├── serializers │ └── application-test.js │ ├── services │ ├── auth-manager-test.js │ └── settings-test.js │ └── transforms │ └── moment-test.js ├── vendor └── .gitkeep ├── wrangler.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/.gitignore -------------------------------------------------------------------------------- /.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended' 5 | }; 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/README.md -------------------------------------------------------------------------------- /app/adapters/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/adapters/application.js -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/app.js -------------------------------------------------------------------------------- /app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/create-job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/components/create-job.js -------------------------------------------------------------------------------- /app/components/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/components/file-upload.js -------------------------------------------------------------------------------- /app/components/forms/login-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/components/forms/login-form.js -------------------------------------------------------------------------------- /app/components/forms/register-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/components/forms/register-form.js -------------------------------------------------------------------------------- /app/components/help-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/components/help-modal.js -------------------------------------------------------------------------------- /app/components/respeak-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/components/respeak-modal.js -------------------------------------------------------------------------------- /app/components/transcription-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/components/transcription-card.js -------------------------------------------------------------------------------- /app/components/video-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/components/video-player.js -------------------------------------------------------------------------------- /app/components/wave-visualiser-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/components/wave-visualiser-standalone.js -------------------------------------------------------------------------------- /app/components/wave-visualiser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/components/wave-visualiser.js -------------------------------------------------------------------------------- /app/components/wave-visulaiser-respeak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/components/wave-visulaiser-respeak.js -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/controllers/application.js -------------------------------------------------------------------------------- /app/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/controllers/index.js -------------------------------------------------------------------------------- /app/controllers/jobs/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/controllers/jobs/create.js -------------------------------------------------------------------------------- /app/controllers/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/controllers/login.js -------------------------------------------------------------------------------- /app/controllers/my-transcriptions/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/controllers/my-transcriptions/list.js -------------------------------------------------------------------------------- /app/controllers/respeak/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/controllers/respeak/list.js -------------------------------------------------------------------------------- /app/controllers/users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/controllers/users/index.js -------------------------------------------------------------------------------- /app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/helpers/transcribing-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/helpers/transcribing-progress.js -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/index.html -------------------------------------------------------------------------------- /app/initializers/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/initializers/router.js -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/models/job.js -------------------------------------------------------------------------------- /app/models/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/models/role.js -------------------------------------------------------------------------------- /app/models/transcription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/models/transcription.js -------------------------------------------------------------------------------- /app/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/models/user.js -------------------------------------------------------------------------------- /app/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/resolver.js -------------------------------------------------------------------------------- /app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/router.js -------------------------------------------------------------------------------- /app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/routes/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/application.js -------------------------------------------------------------------------------- /app/routes/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/editor.js -------------------------------------------------------------------------------- /app/routes/editor/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/editor/list.js -------------------------------------------------------------------------------- /app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/index.js -------------------------------------------------------------------------------- /app/routes/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/jobs.js -------------------------------------------------------------------------------- /app/routes/jobs/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/jobs/create.js -------------------------------------------------------------------------------- /app/routes/jobs/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/jobs/edit.js -------------------------------------------------------------------------------- /app/routes/jobs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/jobs/index.js -------------------------------------------------------------------------------- /app/routes/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/login.js -------------------------------------------------------------------------------- /app/routes/my-transcriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/my-transcriptions.js -------------------------------------------------------------------------------- /app/routes/my-transcriptions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/my-transcriptions/index.js -------------------------------------------------------------------------------- /app/routes/my-transcriptions/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/my-transcriptions/list.js -------------------------------------------------------------------------------- /app/routes/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/register.js -------------------------------------------------------------------------------- /app/routes/respeak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/respeak.js -------------------------------------------------------------------------------- /app/routes/respeak/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/respeak/list.js -------------------------------------------------------------------------------- /app/routes/ui-testing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/ui-testing.js -------------------------------------------------------------------------------- /app/routes/users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/routes/users/index.js -------------------------------------------------------------------------------- /app/serializers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/serializers/application.js -------------------------------------------------------------------------------- /app/serializers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/serializers/user.js -------------------------------------------------------------------------------- /app/services/auth-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/services/auth-manager.js -------------------------------------------------------------------------------- /app/services/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/services/loader.js -------------------------------------------------------------------------------- /app/services/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/services/settings.js -------------------------------------------------------------------------------- /app/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/styles/app.css -------------------------------------------------------------------------------- /app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/application.hbs -------------------------------------------------------------------------------- /app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/components/create-job.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/components/create-job.hbs -------------------------------------------------------------------------------- /app/templates/components/file-upload.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/components/file-upload.hbs -------------------------------------------------------------------------------- /app/templates/components/forms/login-form.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/components/forms/login-form.hbs -------------------------------------------------------------------------------- /app/templates/components/forms/register-form.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/components/forms/register-form.hbs -------------------------------------------------------------------------------- /app/templates/components/help-modal.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/components/help-modal.hbs -------------------------------------------------------------------------------- /app/templates/components/respeak-modal.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/components/respeak-modal.hbs -------------------------------------------------------------------------------- /app/templates/components/transcription-card.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/components/transcription-card.hbs -------------------------------------------------------------------------------- /app/templates/components/video-player.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/components/video-player.hbs -------------------------------------------------------------------------------- /app/templates/components/wave-visualiser-standalone.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/components/wave-visualiser-standalone.hbs -------------------------------------------------------------------------------- /app/templates/components/wave-visualiser.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/components/wave-visualiser.hbs -------------------------------------------------------------------------------- /app/templates/components/wave-visulaiser-respeak.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/components/wave-visulaiser-respeak.hbs -------------------------------------------------------------------------------- /app/templates/editor.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/editor.hbs -------------------------------------------------------------------------------- /app/templates/editor/list.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/editor/list.hbs -------------------------------------------------------------------------------- /app/templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/index.hbs -------------------------------------------------------------------------------- /app/templates/jobs.hbs: -------------------------------------------------------------------------------- 1 | {{outlet}} 2 | -------------------------------------------------------------------------------- /app/templates/jobs/create.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/jobs/create.hbs -------------------------------------------------------------------------------- /app/templates/jobs/edit.hbs: -------------------------------------------------------------------------------- 1 | {{outlet}} -------------------------------------------------------------------------------- /app/templates/jobs/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/jobs/index.hbs -------------------------------------------------------------------------------- /app/templates/login.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/login.hbs -------------------------------------------------------------------------------- /app/templates/my-transcriptions.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/my-transcriptions.hbs -------------------------------------------------------------------------------- /app/templates/my-transcriptions/list.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/my-transcriptions/list.hbs -------------------------------------------------------------------------------- /app/templates/register.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/register.hbs -------------------------------------------------------------------------------- /app/templates/respeak.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/respeak.hbs -------------------------------------------------------------------------------- /app/templates/respeak/list.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/respeak/list.hbs -------------------------------------------------------------------------------- /app/templates/ui-testing.hbs: -------------------------------------------------------------------------------- 1 | {{wave-visualiser-standalone}} -------------------------------------------------------------------------------- /app/templates/users/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/templates/users/index.hbs -------------------------------------------------------------------------------- /app/transforms/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/app/transforms/moment.js -------------------------------------------------------------------------------- /config/.env.example: -------------------------------------------------------------------------------- 1 | API_HOST=http://127.0.0.1:5000 2 | FASTBOOT_DISABLED=true 3 | -------------------------------------------------------------------------------- /config/dotenv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/config/dotenv.js -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/config/environment.js -------------------------------------------------------------------------------- /config/optional-features.json: -------------------------------------------------------------------------------- 1 | { 2 | "jquery-integration": true 3 | } 4 | -------------------------------------------------------------------------------- /config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/config/targets.js -------------------------------------------------------------------------------- /docs/ideas.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/ideas.MD -------------------------------------------------------------------------------- /docs/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/1.png -------------------------------------------------------------------------------- /docs/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/10.png -------------------------------------------------------------------------------- /docs/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/11.png -------------------------------------------------------------------------------- /docs/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/12.png -------------------------------------------------------------------------------- /docs/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/13.png -------------------------------------------------------------------------------- /docs/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/14.png -------------------------------------------------------------------------------- /docs/images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/15.png -------------------------------------------------------------------------------- /docs/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/16.png -------------------------------------------------------------------------------- /docs/images/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/17.png -------------------------------------------------------------------------------- /docs/images/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/18.png -------------------------------------------------------------------------------- /docs/images/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/19.png -------------------------------------------------------------------------------- /docs/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/2.png -------------------------------------------------------------------------------- /docs/images/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/20.png -------------------------------------------------------------------------------- /docs/images/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/21.png -------------------------------------------------------------------------------- /docs/images/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/22.png -------------------------------------------------------------------------------- /docs/images/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/23.png -------------------------------------------------------------------------------- /docs/images/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/24.png -------------------------------------------------------------------------------- /docs/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/3.png -------------------------------------------------------------------------------- /docs/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/5.png -------------------------------------------------------------------------------- /docs/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/6.png -------------------------------------------------------------------------------- /docs/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/7.png -------------------------------------------------------------------------------- /docs/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/8.png -------------------------------------------------------------------------------- /docs/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/9.png -------------------------------------------------------------------------------- /docs/images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/docs/images/demo.gif -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /fastboot/initializers/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/fastboot/initializers/ajax.js -------------------------------------------------------------------------------- /media/Singapores 21st-Century.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/media/Singapores 21st-Century.mp3 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/images/D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/D.svg -------------------------------------------------------------------------------- /public/assets/images/E.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/E.svg -------------------------------------------------------------------------------- /public/assets/images/Enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/Enter.png -------------------------------------------------------------------------------- /public/assets/images/I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/I.svg -------------------------------------------------------------------------------- /public/assets/images/M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/M.png -------------------------------------------------------------------------------- /public/assets/images/alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/alt.svg -------------------------------------------------------------------------------- /public/assets/images/audio-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/audio-file.png -------------------------------------------------------------------------------- /public/assets/images/ctrl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/ctrl.svg -------------------------------------------------------------------------------- /public/assets/images/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/down.svg -------------------------------------------------------------------------------- /public/assets/images/enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/enter.svg -------------------------------------------------------------------------------- /public/assets/images/j.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/j.svg -------------------------------------------------------------------------------- /public/assets/images/k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/k.svg -------------------------------------------------------------------------------- /public/assets/images/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/left.svg -------------------------------------------------------------------------------- /public/assets/images/ntu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/ntu-logo.png -------------------------------------------------------------------------------- /public/assets/images/ntu-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/ntu-logo.svg -------------------------------------------------------------------------------- /public/assets/images/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/right.svg -------------------------------------------------------------------------------- /public/assets/images/space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/space.svg -------------------------------------------------------------------------------- /public/assets/images/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/up.svg -------------------------------------------------------------------------------- /public/assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/public/assets/images/user.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /sample-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/sample-input.json -------------------------------------------------------------------------------- /sample-ouput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/sample-ouput.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/fastboot-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/scripts/fastboot-server.js -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/testem.js -------------------------------------------------------------------------------- /tests/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/components/create-job-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/integration/components/create-job-test.js -------------------------------------------------------------------------------- /tests/integration/components/file-upload-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/integration/components/file-upload-test.js -------------------------------------------------------------------------------- /tests/integration/components/forms/login-form-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/integration/components/forms/login-form-test.js -------------------------------------------------------------------------------- /tests/integration/components/forms/register-form-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/integration/components/forms/register-form-test.js -------------------------------------------------------------------------------- /tests/integration/components/help-modal-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/integration/components/help-modal-test.js -------------------------------------------------------------------------------- /tests/integration/components/respeak-modal-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/integration/components/respeak-modal-test.js -------------------------------------------------------------------------------- /tests/integration/components/transcription-card-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/integration/components/transcription-card-test.js -------------------------------------------------------------------------------- /tests/integration/components/video-player-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/integration/components/video-player-test.js -------------------------------------------------------------------------------- /tests/integration/components/wave-visualiser-standalone-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/integration/components/wave-visualiser-standalone-test.js -------------------------------------------------------------------------------- /tests/integration/components/wave-visualiser-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/integration/components/wave-visualiser-test.js -------------------------------------------------------------------------------- /tests/integration/components/wave-visulaiser-respeak-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/integration/components/wave-visulaiser-respeak-test.js -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/adapters/application-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/adapters/application-test.js -------------------------------------------------------------------------------- /tests/unit/controllers/application-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/controllers/application-test.js -------------------------------------------------------------------------------- /tests/unit/controllers/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/controllers/index-test.js -------------------------------------------------------------------------------- /tests/unit/controllers/login-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/controllers/login-test.js -------------------------------------------------------------------------------- /tests/unit/controllers/respeak/list-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/controllers/respeak/list-test.js -------------------------------------------------------------------------------- /tests/unit/models/job-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/models/job-test.js -------------------------------------------------------------------------------- /tests/unit/models/user-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/models/user-test.js -------------------------------------------------------------------------------- /tests/unit/routes/application-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/application-test.js -------------------------------------------------------------------------------- /tests/unit/routes/editor-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/editor-test.js -------------------------------------------------------------------------------- /tests/unit/routes/editor/list-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/editor/list-test.js -------------------------------------------------------------------------------- /tests/unit/routes/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/index-test.js -------------------------------------------------------------------------------- /tests/unit/routes/jobs-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/jobs-test.js -------------------------------------------------------------------------------- /tests/unit/routes/jobs/create-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/jobs/create-test.js -------------------------------------------------------------------------------- /tests/unit/routes/jobs/edit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/jobs/edit-test.js -------------------------------------------------------------------------------- /tests/unit/routes/jobs/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/jobs/index-test.js -------------------------------------------------------------------------------- /tests/unit/routes/login-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/login-test.js -------------------------------------------------------------------------------- /tests/unit/routes/my-transcriptions/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/my-transcriptions/index-test.js -------------------------------------------------------------------------------- /tests/unit/routes/my-transcriptions/list-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/my-transcriptions/list-test.js -------------------------------------------------------------------------------- /tests/unit/routes/respeak-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/respeak-test.js -------------------------------------------------------------------------------- /tests/unit/routes/respeak/list-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/respeak/list-test.js -------------------------------------------------------------------------------- /tests/unit/routes/ui-testing-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/routes/ui-testing-test.js -------------------------------------------------------------------------------- /tests/unit/serializers/application-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/serializers/application-test.js -------------------------------------------------------------------------------- /tests/unit/services/auth-manager-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/services/auth-manager-test.js -------------------------------------------------------------------------------- /tests/unit/services/settings-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/services/settings-test.js -------------------------------------------------------------------------------- /tests/unit/transforms/moment-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/tests/unit/transforms/moment-test.js -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wrangler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/wrangler.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavk96/Transcriptor/HEAD/yarn.lock --------------------------------------------------------------------------------