| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- const config = `
- <View>
- <Header value="Select regions:"></Header>
- <Labels name="label" toName="audio" choice="multiple">
- <Label value="Beat" background="yellow"></Label>
- <Label value="Voice" background="red"></Label>
- <Label value="Guitar" background="blue"></Label>
- <Label value="Other"></Label>
- </Labels>
- <Header value="Select genre:"></Header>
- <Choices name="choice" toName="audio" choice="multiple">
- <Choice value="Lo-Fi" />
- <Choice value="Rock" />
- <Choice value="Pop" />
- </Choices>
- <Header value="Listen the audio:"></Header>
- <Audio name="audio" value="$url"></Audio>
- </View>
- `;
- const data = {
- url: "/public/files/barradeen-emotional.mp3",
- };
- const result = [
- {
- from_name: "label",
- id: "SsGrpVgy_C",
- to_name: "audio",
- original_length: 98.719925,
- type: "labels",
- origin: "manual",
- value: {
- channel: 0,
- end: 28.50568583621215,
- labels: ["Beat"],
- start: 12.778410892095105,
- },
- },
- {
- from_name: "label",
- id: "JhxupEJWlW",
- to_name: "audio",
- original_length: 98.719925,
- type: "labels",
- origin: "manual",
- value: {
- channel: 1,
- end: 59.39854733358493,
- labels: ["Other"],
- start: 55.747572792986325,
- },
- },
- {
- from_name: "choice",
- id: "hIj6zg57SY",
- to_name: "audio",
- type: "choices",
- origin: "manual",
- value: {
- choices: ["Lo-Fi"],
- },
- },
- ];
- const title = "Audio regions";
- module.exports = { config, data, result, title };
|