Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HighBlueParsers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Paul Best
HighBlueParsers
Commits
ddbc09d5
Commit
ddbc09d5
authored
2 years ago
by
Paul Best
Browse files
Options
Downloads
Patches
Plain Diff
rapport2wav
parent
60eee5ce
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Rapport2wavs.py
+44
-0
44 additions, 0 deletions
Rapport2wavs.py
RapportInfo2txt
+0
-0
0 additions, 0 deletions
RapportInfo2txt
RapportInfo2txt.c
+2
-2
2 additions, 2 deletions
RapportInfo2txt.c
with
46 additions
and
2 deletions
Rapport2wavs.py
0 → 100644
+
44
−
0
View file @
ddbc09d5
import
numpy
as
np
import
soundfile
as
sf
import
argparse
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'
filename
'
)
args
=
parser
.
parse_args
()
RORQUAL_HOPSIZE
,
RORQUAL_WINSIZE
,
RORQUAL_FE
=
256
,
4096
,
4000
CACHA_HOPSIZE
,
CACHA_WINSIZE
,
CACHA_FE
=
256
,
512
,
64000
RAPPORT_FE
=
128_000
rorqual_predPos
=
lambda
p
:
int
(((
p
*
RORQUAL_HOPSIZE
+
(
RORQUAL_WINSIZE
/
2
+
RORQUAL_HOPSIZE
*
13
)
/
2
)
/
RORQUAL_FE
-
1
)
*
RAPPORT_FE
)
cacha_predPos
=
lambda
p
:
int
(((
p
*
CACHA_HOPSIZE
*
8
+
(
CACHA_WINSIZE
+
CACHA_HOPSIZE
*
7
*
6
)
/
2
)
/
CACHA_FE
-
0.05
)
*
RAPPORT_FE
)
file
=
open
(
args
.
filename
,
'
r
'
)
lines
=
iter
(
file
.
readlines
())
for
l
in
lines
:
if
l
==
'
rorqual predPeaks
\n
'
:
l
=
next
(
lines
)
if
'
,
'
in
l
:
l
=
next
(
lines
)
if
'
,
'
in
l
:
sig
=
np
.
zeros
((
30
*
128_000
,
5
),
dtype
=
'
int16
'
)
peaks
=
np
.
array
(
l
[:
-
2
].
split
(
'
,
'
)).
astype
(
int
)
l
=
next
(
lines
)
for
p
in
peaks
:
l
=
next
(
lines
)
samples
=
np
.
array
(
l
[:
-
2
].
split
(
'
,
'
)).
astype
(
'
int16
'
).
reshape
(
-
1
,
5
)
sig
[
rorqual_predPos
(
p
):
rorqual_predPos
(
p
)
+
256000
]
=
samples
sf
.
write
(
f
'
{
args
.
filename
[
:
-
9
]
}
_rorqual.wav
'
,
sig
,
RAPPORT_FE
)
if
l
==
'
cacha predPeaks
\n
'
:
l
=
next
(
lines
)
if
'
,
'
in
l
:
sig
=
np
.
zeros
((
10
*
128_000
,
5
),
dtype
=
'
int16
'
)
peaks
=
np
.
array
(
l
[:
-
2
].
split
(
'
,
'
)).
astype
(
int
)
l
=
next
(
lines
)
for
p
in
peaks
:
l
=
next
(
lines
)
samples
=
np
.
array
(
l
[:
-
2
].
split
(
'
,
'
)).
astype
(
'
int16
'
).
reshape
(
-
1
,
5
)
sig
[
cacha_predPos
(
p
):
cacha_predPos
(
p
)
+
12800
]
=
samples
sf
.
write
(
f
'
{
args
.
filename
[
:
-
9
]
}
_cacha.wav
'
,
sig
,
RAPPORT_FE
)
file
.
close
()
This diff is collapsed.
Click to expand it.
RapportInfo2txt
+
0
−
0
View file @
ddbc09d5
No preview for this file type
This diff is collapsed.
Click to expand it.
RapportInfo2txt.c
+
2
−
2
View file @
ddbc09d5
...
...
@@ -72,7 +72,7 @@ int main(int argc, char* argv[]){
for
(
i
=
0
;
i
<
rapport
.
numDetectionsRorqual
;
i
++
){
for
(
j
=
0
;
j
<
RORQUAL_RAPPORT_SAMPLESPERSAMPLE
;
j
++
){
for
(
k
=
0
;
k
<
RAPPORT_CHANNELS
;
k
++
){
//
fprintf(outfile, "%hd,", rapport.samplesR[i][j][k]);
fprintf
(
outfile
,
"%hd,"
,
rapport
.
samplesR
[
i
][
j
][
k
]);
}
}
fprintf
(
outfile
,
"
\n
"
);
...
...
@@ -89,7 +89,7 @@ int main(int argc, char* argv[]){
for
(
i
=
0
;
i
<
rapport
.
numDetectionsCachalot
;
i
++
){
for
(
j
=
0
;
j
<
CACHA_RAPPORT_SAMPLESPERSAMPLE
;
j
++
){
for
(
k
=
0
;
k
<
RAPPORT_CHANNELS
;
k
++
){
//
fprintf(outfile, "%hd,", rapport.samplesC[i][j][k]);
fprintf
(
outfile
,
"%hd,"
,
rapport
.
samplesC
[
i
][
j
][
k
]);
}
}
fprintf
(
outfile
,
"
\n
"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment