Replies: 2 comments 1 reply
-
Hi! Thank you for your interest and suggestion. I think that would be a worthwhile feature. Until then, if you or anyone reading this have sox or sox.exe installed, you can quickly transform the file, e.g. BR |
Beta Was this translation helpful? Give feedback.
-
Hi JF, BR #! /bin/bash
train_dir=training_set
rm -rf "$train_dir"
mkdir "$train_dir"
FILES=*
for f in $FILES
do
cd "$f"
mkdir ../"$train_dir"/"$f"
for call in *.wav
do
sox "$call" ../"$train_dir"/"$f"/"$call" speed 10
# sox "$call" ../"$train_dir"/"$f"/"$call" speed 10 rate 256000 sinc -n 32767 12000-65000
done
cd ..
done |
Beta Was this translation helpful? Give feedback.
-
Hi, it would be great to have the possibility to process high-frequency sound recordings that are 10-timed expanded. Often, wav files are modified for example from 144kHz to 14.4kHz for the sake of the analysis of echolocation signals.
To his API batdetect2, @macaodha has added a flag "--time_expansion_factor" that is taking the value 1 or 10.
Is it possible to add such a flag in bat_indent.py ?
Thanks for your work!
JF Godeau
Beta Was this translation helpful? Give feedback.
All reactions