summaryrefslogtreecommitdiff
path: root/LoopbackApp/app/src/main/res/values/strings.xml
blob: 4da727fcd2314c3314726910ee57a32a23316de4 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<resources>

    <string name="app_name">Loopback App</string>

    <string name="buttonPlay_play">Refresh Screen</string>
    <string name="buttonPlay_pause">Pause</string>
    <string name="buttonTest_enabled">Round-Trip\nLatency Test</string>
    <string name="buttonTest_disabled">FX Disabled Loopback 2</string>
    <string name="buttonSave">Save Results</string>
    <string name="buttonZoomOutFull">Unzoom</string>
    <string name="buttonZoomOut">Zoom Out</string>
    <string name="buttonZoomIn"> Zoom In</string>
    <string name="buttonAbout">About</string>
    <string name="buttonRecorderBufferPeriod">Recorder</string>
    <string name="buttonPlayerBufferPeriod">Player</string>
    <string name="ReadHistTitle">Frequency vs. Recorder Buffer Period (ms) Plot</string>
    <string name="WriteHistTitle">Frequency vs. Player Buffer Period (ms) Plot</string>
    <string name="buttonBufferTest">Buffer Period\n&amp; Glitch Test</string>
    <string name="buttonGlitches">Glitches</string>
    <string name="numGlitches">Total Number of Glitches:</string>

    <!-- disabled -->
    <string name="buttonZoomInFull">In Full</string>

    <string name="buttonSettings">Settings</string>


    <string name="labelMicSource">Microphone Source</string>
    <string-array name="mic_source_array">
        <item>DEFAULT</item>
        <item>MIC</item>
        <item>CAMCORDER</item>
        <item>VOICE_RECOGNITION</item>
        <item>VOICE_COMMUNICATION</item>
        <item>REMOTE_SUBMIX_java_only</item>
    </string-array>

    <string name="labelInfo">Info...</string>
    <string name="labelSettings">SETTINGS</string>
    <string name="labelAbout">About</string>
    <string name="labelSamplingRate">Sampling Rate</string>
    <string name="AboutInfo">Round-trip audio latency testing app\n
        using the Dr. Rick O\'Rang audio loopback dongle.\n
        Authors: Ricardo Garcia (rago), Tzu-Yin Tai, and Brandon Swanson\n
        Open source project on:\n
        https://github.com/gkasten/drrickorang\n
        References:\n
        https://source.android.com/devices/audio/latency.html\n
        https://goo.gl/dxcw0d\n\n\n
        adb parameters:  all parameters are optional. If not specified, defaults will be used.\n
        -ei SF \t\t\t\t\t\t\t\t\t\t\t\t ####\t\t sampling frequency \n
        -es Filename \t\t\t\t\t\t\t ssss\t\t\t output filename \n
        -ei MicSource \t\t\t\t\t\t\t ####\t\t microphone source\n
        \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 0: DEFAULT\n
        \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 1: MIC\n
        \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 2: CAMCORDER\n
        \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 3: VOICE_RECOGNITION\n
        \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 4: VOICE_COMMUNICATION\n
        -ei AudioThread \t\t\t\t\t ####\t\t Audio Thread Type\n
        \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 0: Java\n
        \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 1: Native (JNI)\n
        -ei AudioLevel \t\t\t\t\t\t ####\t\t Audio Level [0:15]\n
        -ei RecorderBuffer \t\t\t\t ####\t\t Recorder Buffer Frames\n
        -ei PlayerBuffer \t\t\t\t\t\t ####\t\t Player Buffer Frames\n
        -ei TestType \t\t\t\t\t\t\t\t ####\t\t Audio Test Type\n
        \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 222: Latency Test\n
        \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t 223: Buffer Test\n
        -ei BufferTestDuration \t ####\t\t Buffer Test Duration \n
        -ei NumLoadThreads \t ####\t\t Number of Simulated Load Threads (0 - ~10)\n\n\n
        Example: adb shell am start -n org.drrickorang.loopback/.LoopbackActivity
        --ei SF 48000 --es FileName output --ei MicSource 3 --ei AudioThread 1 --ei AudioLevel 12
        --ei TestType 223 --ei BufferTestDuration 5
    </string>

    <!-- spinnerSamplingRate Options -->
    <string-array name="samplingRate_array">
        <item>8000</item>
        <item>11025</item>
        <item>22050</item>
        <item>44100</item>
        <item>48000</item>
    </string-array>

    <string name="labelAudioThreadType">Audio Thread Type</string>

    <!-- spinnerAudioThreadType Options -->
    <string-array name="audioThreadType_array">
        <item>Java</item>
        <item>native (JNI)</item>
    </string-array>

    <string name="labelChannelIndex">Channel Index</string>

    <!-- spinnerChannelIndex Options -->
    <string-array name="channelIndex_array">
        <item>Mono</item>
        <item>0</item>
        <item>1</item>
        <item>2</item>
        <item>3</item>
        <item>4</item>
        <item>5</item>
        <item>6</item>
        <item>7</item>
    </string-array>

    <string name="labelPlayerBuffer">Player Buffer (Frames) (Max: %1$d)</string>
    <string name="labelRecorderBuffer">Recorder Buffer (Frames) (Max: %1$d)</string>
    <string name="buttonDefaultSettings">Compute Default Settings</string>
    <string name="buttonRecordDefault">System Default Recorder Buffer</string>
    <string name="labelBufferTestDuration">Buffer Test Duration (Seconds) (Max: %1$d)</string>
    <string name="labelBufferTestWavePlotDuration">Buffer Test Wave Plot Duration (Seconds)
                                                   (Max: %1$d)</string>
    <string name="loadThreadsLabel">Number of Simulated Load Threads</string>
    <string name="SaveFileDialogLabel">Save Files To:</string>
    <string name="SaveFileDialogOK">//mnt/sdcard/</string>
    <string name="SaveFileDialogChooseFilenames">Choose Filenames \n and Location</string>

</resources>