forked from bbc/react-transcript-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
35 lines (31 loc) · 1.09 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import TranscriptEditor from './components/transcript-editor/index.js';
import TimedTextEditor from './components/timed-text-editor/index.js';
import Settings from './components/settings/index.js';
import KeyboardShortcuts from './components/keyboard-shortcuts/index.js';
import VideoPlayer from './components/video-player/index.js';
import MediaPlayer from './components/media-player/index.js';
import PlayerControls from './components/media-player/src/PlayerControls/index.js';
import groupWordsInParagraphsBySpeakersDPE from './stt-adapters/digital-paper-edit/group-words-by-speakers.js';
import {
secondsToTimecode,
timecodeToSeconds,
shortTimecode
} from './util/timecode-converter/index.js';
import exportAdapter from './export-adapters/index.js';
import sttJsonAdapter from './stt-adapters/index.js';
export default TranscriptEditor;
export {
TranscriptEditor,
TimedTextEditor,
VideoPlayer,
MediaPlayer,
PlayerControls,
Settings,
KeyboardShortcuts,
secondsToTimecode,
timecodeToSeconds,
shortTimecode,
exportAdapter,
sttJsonAdapter,
groupWordsInParagraphsBySpeakersDPE
};