Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: webrtc/modules/audio_processing/test/py_conversational_speech/README.md

Issue 2733863002: Conversational Speech generator, main script with shell arguments (Closed)
Patch Set: typo fixed Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/py_conversational_speech/generate_conversational_tracks.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/test/py_conversational_speech/README.md
diff --git a/webrtc/modules/audio_processing/test/py_conversational_speech/README.md b/webrtc/modules/audio_processing/test/py_conversational_speech/README.md
index 432448e278b95fd447b6b7a6bb6c068cbfcb3f45..79d07fdf08edd43171a7aba8f458ddf918a854d9 100644
--- a/webrtc/modules/audio_processing/test/py_conversational_speech/README.md
+++ b/webrtc/modules/audio_processing/test/py_conversational_speech/README.md
@@ -26,12 +26,16 @@ IMPORTANT: **the whole code has not been landed yet.**
For each end, there is a set of audio tracks, e.g., a1, a2 and a3 (speaker A)
and b1, b2 (speaker B).
The text file with the timing information may look like this:
-``` A a1 0
- B b1 0
- A a2 100
- B b2 -200
- A a3 0
- A a4 0```
+
+```
+A a1 0
+B b1 0
+A a2 100
+B b2 -200
+A a3 0
+A a4 0
+```
+
The first column indicates the speaker name, the second contains the audio track
file names, and the third the offsets (in milliseconds) used to concatenate the
chunks.
@@ -39,26 +43,32 @@ chunks.
Assume that all the audio tracks in the example above are 1000 ms long.
The tool will then generate two tracks (A and B) that look like this:
-```Track A:
+**Track A**
+```
a1 (1000 ms)
silence (1100 ms)
a2 (1000 ms)
silence (800 ms)
a3 (1000 ms)
- a4 (1000 ms)```
+ a4 (1000 ms)
+```
-```Track B:
+**Track B**
+```
silence (1000 ms)
b1 (1000 ms)
silence (900 ms)
b2 (1000 ms)
- silence (2000 ms)```
+ silence (2000 ms)
+```
The two tracks can be also visualized as follows (one characheter represents
100 ms, "." is silence and "*" is speech).
-```t: 0 1 2 3 4 5 6 (s)
+```
+t: 0 1 2 3 4 5 6 (s)
A: **********...........**********........********************
B: ..........**********.........**********....................
^ 200 ms cross-talk
- 100 ms silence ^```
+ 100 ms silence ^
+```
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/py_conversational_speech/generate_conversational_tracks.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698