From ca0453021f7958af0b8edf072b0487b1762b2e62 Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Thu, 22 Jun 2023 11:38:49 +0200 Subject: [PATCH 01/12] add a helper script for getting MD5 hashes on unix --- other/get_md5.sh | 59 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100755 other/get_md5.sh diff --git a/other/get_md5.sh b/other/get_md5.sh new file mode 100755 index 00000000..f90463fe --- /dev/null +++ b/other/get_md5.sh @@ -0,0 +1,59 @@ +#!/bin/sh + +# (C) 2022-2023 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository. All Rights Reserved. + +# This software is protected by copyright law and by international treaties. +# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository retain full ownership rights in their respective contributions in +# the software. This notice grants no license of any kind, including but not limited to patent +# license, nor is any license granted by implication, estoppel or otherwise. + +# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making +# contributions. + +# This software is provided "AS IS", without any express or implied warranties. The software is in the +# development stage. It is intended exclusively for experts who have experience with such software and +# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability +# and fitness for a particular purpose are hereby disclaimed and excluded. + +# Any dispute, controversy or claim arising under or in relation to providing this software shall be +# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in +# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and +# the United Nations Convention on Contracts on the International Sales of Goods. + +# simple script to create MD5 files as if produced by Microsoft Powershell +# run from within proc_output_x folder + +if [ $# -lt 1 ]; then + echo "Usage: $0 testname.md5" + echo "Requires: md5sum" + exit 1 +fi + +system=$(uname -s) + +# check, whether we have set md5 correctly +if + ! command -v $md5 & + >/dev/null +then + echo "Executable for calculating md5 could not be detected. Aborting." + exit +fi + +if [ "$system" = "Darwin" ]; then + md5 -r cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >$1 +else + md5sum cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >$1 +fi + +echo "" +echo "" +echo "" -- GitLab From 0da35dc2639a0b1a77a9b6ff256ac28e330130b3 Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Thu, 22 Jun 2023 12:14:37 +0200 Subject: [PATCH 02/12] fix md5 detection --- other/get_md5.sh | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/other/get_md5.sh b/other/get_md5.sh index f90463fe..9077d5c4 100755 --- a/other/get_md5.sh +++ b/other/get_md5.sh @@ -32,26 +32,17 @@ # run from within proc_output_x folder if [ $# -lt 1 ]; then - echo "Usage: $0 testname.md5" - echo "Requires: md5sum" - exit 1 + echo "Usage: $0 testname.md5" + echo "Requires: md5sum" + exit 1 fi system=$(uname -s) -# check, whether we have set md5 correctly -if - ! command -v $md5 & - >/dev/null -then - echo "Executable for calculating md5 could not be detected. Aborting." - exit -fi - if [ "$system" = "Darwin" ]; then - md5 -r cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >$1 + md5 -r cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >$1 else - md5sum cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >$1 + md5sum cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >$1 fi echo "" -- GitLab From b3d63d8734827d296bfb77491d489c0357f189da Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Thu, 22 Jun 2023 12:28:29 +0200 Subject: [PATCH 03/12] add powershell version and adapt shell script to match --- other/get_md5.ps1 | 9 +++++++++ other/get_md5.sh | 12 +++++++++--- 2 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 other/get_md5.ps1 diff --git a/other/get_md5.ps1 b/other/get_md5.ps1 new file mode 100644 index 00000000..4621ec53 --- /dev/null +++ b/other/get_md5.ps1 @@ -0,0 +1,9 @@ +param( + [Parameter(Mandatory)] + [String]$out_file +) + +(Get-FileHash .\cat?\c*\*.wav -Algorithm MD5 | Out-String -Width 9999) | +ForEach-Object { $_.replace( -join ((Get-Location) , "\"), ".\") } | +ForEach-Object { $_ -replace (" ", "") } | +Out-File $out_file \ No newline at end of file diff --git a/other/get_md5.sh b/other/get_md5.sh index 9077d5c4..ee74d9ed 100755 --- a/other/get_md5.sh +++ b/other/get_md5.sh @@ -39,12 +39,18 @@ fi system=$(uname -s) +echo "" > $1 +echo "AlgorithmHashPath" > $1 +echo "-----------------" > $1 + if [ "$system" = "Darwin" ]; then md5 -r cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >$1 else md5sum cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >$1 fi -echo "" -echo "" -echo "" +echo "" > $1 +echo "" > $1 +echo "" > $1 + +unix2dos $1 \ No newline at end of file -- GitLab From 220e3ea71113997d14dc5531449131979a79a562 Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Thu, 22 Jun 2023 12:47:21 +0200 Subject: [PATCH 04/12] [fix] shell script --- other/get_md5.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/other/get_md5.sh b/other/get_md5.sh index ee74d9ed..1ee88f22 100755 --- a/other/get_md5.sh +++ b/other/get_md5.sh @@ -39,18 +39,18 @@ fi system=$(uname -s) -echo "" > $1 -echo "AlgorithmHashPath" > $1 -echo "-----------------" > $1 +echo "" >>$1 +echo "AlgorithmHashPath" >>$1 +echo "-----------------" >>$1 if [ "$system" = "Darwin" ]; then - md5 -r cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >$1 + md5 -r cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >>$1 else - md5sum cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >$1 + md5sum cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >>$1 fi -echo "" > $1 -echo "" > $1 -echo "" > $1 +echo "" >>$1 +echo "" >>$1 +echo "" >>$1 -unix2dos $1 \ No newline at end of file +unix2dos $1 -- GitLab From 202eb4311003b11303239b971976e0740397ec4b Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Thu, 22 Jun 2023 13:19:59 +0200 Subject: [PATCH 05/12] [fix] write utf8 with ps script --- other/get_md5.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other/get_md5.ps1 b/other/get_md5.ps1 index 4621ec53..e525e120 100644 --- a/other/get_md5.ps1 +++ b/other/get_md5.ps1 @@ -6,4 +6,4 @@ param( (Get-FileHash .\cat?\c*\*.wav -Algorithm MD5 | Out-String -Width 9999) | ForEach-Object { $_.replace( -join ((Get-Location) , "\"), ".\") } | ForEach-Object { $_ -replace (" ", "") } | -Out-File $out_file \ No newline at end of file +Out-File -Encoding utf8 $out_file \ No newline at end of file -- GitLab From 5b1295a6e8590bdf726a88dfe6cf822515649ad7 Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Thu, 22 Jun 2023 13:50:32 +0200 Subject: [PATCH 06/12] [fix] update wildcard expression to match FOA/HOA produced for MASA tests in addition to catXX --- other/get_md5.ps1 | 2 +- other/get_md5.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/other/get_md5.ps1 b/other/get_md5.ps1 index e525e120..ea51c91c 100644 --- a/other/get_md5.ps1 +++ b/other/get_md5.ps1 @@ -3,7 +3,7 @@ param( [String]$out_file ) -(Get-FileHash .\cat?\c*\*.wav -Algorithm MD5 | Out-String -Width 9999) | +(Get-FileHash .\[cFH][aO][tA]*\c*\*.wav -Algorithm MD5 | Out-String -Width 9999) | ForEach-Object { $_.replace( -join ((Get-Location) , "\"), ".\") } | ForEach-Object { $_ -replace (" ", "") } | Out-File -Encoding utf8 $out_file \ No newline at end of file diff --git a/other/get_md5.sh b/other/get_md5.sh index 1ee88f22..f92eb152 100755 --- a/other/get_md5.sh +++ b/other/get_md5.sh @@ -44,9 +44,9 @@ echo "AlgorithmHashPath" >>$1 echo "-----------------" >>$1 if [ "$system" = "Darwin" ]; then - md5 -r cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >>$1 + md5 -r [cFH][aO][tA]*/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >>$1 else - md5sum cat?/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >>$1 + md5sum [cFH][aO][tA]*/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >>$1 fi echo "" >>$1 -- GitLab From 8885758c4a716f402506f3d1f3d6974b6c6e2088 Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Thu, 22 Jun 2023 14:20:27 +0200 Subject: [PATCH 07/12] [fix] minor fix for file writing in linux md5 script --- other/get_md5.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other/get_md5.sh b/other/get_md5.sh index f92eb152..6b5a5cac 100755 --- a/other/get_md5.sh +++ b/other/get_md5.sh @@ -39,7 +39,7 @@ fi system=$(uname -s) -echo "" >>$1 +echo "" >$1 echo "AlgorithmHashPath" >>$1 echo "-----------------" >>$1 -- GitLab From 937816f4131f97f38011c4550984a7431d36b6bc Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Thu, 22 Jun 2023 14:24:06 +0200 Subject: [PATCH 08/12] add missing copyright headers --- other/check_conditions.py | 29 +++++++++++++++++++++++++++++ other/get_md5.ps1 | 28 ++++++++++++++++++++++++++++ other/lp16k.py | 29 +++++++++++++++++++++++++++++ 3 files changed, 86 insertions(+) diff --git a/other/check_conditions.py b/other/check_conditions.py index d9bd1382..0651c9ce 100644 --- a/other/check_conditions.py +++ b/other/check_conditions.py @@ -1,4 +1,33 @@ #!/usr/bin/python3 +# +# (C) 2022-2023 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository. All Rights Reserved. +# +# This software is protected by copyright law and by international treaties. +# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository retain full ownership rights in their respective contributions in +# the software. This notice grants no license of any kind, including but not limited to patent +# license, nor is any license granted by implication, estoppel or otherwise. +# +# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making +# contributions. +# +# This software is provided "AS IS", without any express or implied warranties. The software is in the +# development stage. It is intended exclusively for experts who have experience with such software and +# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability +# and fitness for a particular purpose are hereby disclaimed and excluded. +# +# Any dispute, controversy or claim arising under or in relation to providing this software shall be +# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in +# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and +# the United Nations Convention on Contracts on the International Sales of Goods. +# import argparse import multiprocessing as mp import re diff --git a/other/get_md5.ps1 b/other/get_md5.ps1 index ea51c91c..c1149b9d 100644 --- a/other/get_md5.ps1 +++ b/other/get_md5.ps1 @@ -1,3 +1,31 @@ +# (C) 2022-2023 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository. All Rights Reserved. + +# This software is protected by copyright law and by international treaties. +# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository retain full ownership rights in their respective contributions in +# the software. This notice grants no license of any kind, including but not limited to patent +# license, nor is any license granted by implication, estoppel or otherwise. + +# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making +# contributions. + +# This software is provided "AS IS", without any express or implied warranties. The software is in the +# development stage. It is intended exclusively for experts who have experience with such software and +# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability +# and fitness for a particular purpose are hereby disclaimed and excluded. + +# Any dispute, controversy or claim arising under or in relation to providing this software shall be +# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in +# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and +# the United Nations Convention on Contracts on the International Sales of Goods. + param( [Parameter(Mandatory)] [String]$out_file diff --git a/other/lp16k.py b/other/lp16k.py index 9f078881..b0d57ff9 100755 --- a/other/lp16k.py +++ b/other/lp16k.py @@ -1,4 +1,33 @@ #!/usr/bin/python3 +# +# (C) 2022-2023 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository. All Rights Reserved. +# +# This software is protected by copyright law and by international treaties. +# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository retain full ownership rights in their respective contributions in +# the software. This notice grants no license of any kind, including but not limited to patent +# license, nor is any license granted by implication, estoppel or otherwise. +# +# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making +# contributions. +# +# This software is provided "AS IS", without any express or implied warranties. The software is in the +# development stage. It is intended exclusively for experts who have experience with such software and +# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability +# and fitness for a particular purpose are hereby disclaimed and excluded. +# +# Any dispute, controversy or claim arising under or in relation to providing this software shall be +# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in +# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and +# the United Nations Convention on Contracts on the International Sales of Goods. +# import argparse import multiprocessing as mp import sys -- GitLab From 2e133313f43562f0510f01bb79b34bb42ed42c0d Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Thu, 22 Jun 2023 16:03:47 +0200 Subject: [PATCH 09/12] [fix] new version of powershell script that can be called from any directory --- other/get_md5.ps1 | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/other/get_md5.ps1 b/other/get_md5.ps1 index c1149b9d..57bac284 100644 --- a/other/get_md5.ps1 +++ b/other/get_md5.ps1 @@ -27,11 +27,16 @@ # the United Nations Convention on Contracts on the International Sales of Goods. param( + [Parameter(Mandatory)] + [String]$in_dir, [Parameter(Mandatory)] [String]$out_file ) -(Get-FileHash .\[cFH][aO][tA]*\c*\*.wav -Algorithm MD5 | Out-String -Width 9999) | -ForEach-Object { $_.replace( -join ((Get-Location) , "\"), ".\") } | -ForEach-Object { $_ -replace (" ", "") } | -Out-File -Encoding utf8 $out_file \ No newline at end of file +(Get-ChildItem $in_dir -Recurse | Where-Object { $_.Name -like '*c??.wav' }) | +ForEach-Object { + $name = $_.Name + $hash = (Get-FileHash $_.FullName -Algorithm MD5).Hash + + "$name $hash" >> $out_file +} \ No newline at end of file -- GitLab From 521f3be38e36f9788b3b2e15d683a230a4d32406 Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Thu, 22 Jun 2023 16:43:39 +0200 Subject: [PATCH 10/12] [fix] update linux script to produce same output --- other/get_md5.ps1 | 4 ++-- other/get_md5.sh | 21 ++++++++------------- 2 files changed, 10 insertions(+), 15 deletions(-) diff --git a/other/get_md5.ps1 b/other/get_md5.ps1 index 57bac284..a370c830 100644 --- a/other/get_md5.ps1 +++ b/other/get_md5.ps1 @@ -28,12 +28,12 @@ param( [Parameter(Mandatory)] - [String]$in_dir, + [String]$proc_output_dir, [Parameter(Mandatory)] [String]$out_file ) -(Get-ChildItem $in_dir -Recurse | Where-Object { $_.Name -like '*c??.wav' }) | +(Get-ChildItem $proc_output_dir -Recurse | Where-Object { $_.Name -like '*c??.wav' }) | ForEach-Object { $name = $_.Name $hash = (Get-FileHash $_.FullName -Algorithm MD5).Hash diff --git a/other/get_md5.sh b/other/get_md5.sh index 6b5a5cac..d9977ed3 100755 --- a/other/get_md5.sh +++ b/other/get_md5.sh @@ -31,26 +31,21 @@ # simple script to create MD5 files as if produced by Microsoft Powershell # run from within proc_output_x folder -if [ $# -lt 1 ]; then - echo "Usage: $0 testname.md5" +if [ $# -lt 2 ]; then + echo "Usage: $0 proc_output_dir testname.md5" echo "Requires: md5sum" exit 1 fi system=$(uname -s) -echo "" >$1 -echo "AlgorithmHashPath" >>$1 -echo "-----------------" >>$1 - if [ "$system" = "Darwin" ]; then - md5 -r [cFH][aO][tA]*/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >>$1 + md5="md5 -r" else - md5sum [cFH][aO][tA]*/c??/*.wav | awk '{print "MD5"toupper($1)".\\"$2 }' | tr -s '/' '\\' >>$1 + md5=md5sum fi -echo "" >>$1 -echo "" >>$1 -echo "" >>$1 - -unix2dos $1 +echo "" > $2 +for f in $(find $1 -name "*c??.wav"); do + echo ${f##*/} $($md5 $f | awk '{ print toupper($1) }') >>$2 +done -- GitLab From 7857f8756437eeb34706db5e1dd1e310e41a4ab8 Mon Sep 17 00:00:00 2001 From: Markus Multrus Date: Thu, 22 Jun 2023 23:50:06 +0200 Subject: [PATCH 11/12] add sorting --- other/get_md5.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/other/get_md5.sh b/other/get_md5.sh index d9977ed3..fcf7d3d9 100755 --- a/other/get_md5.sh +++ b/other/get_md5.sh @@ -33,7 +33,7 @@ if [ $# -lt 2 ]; then echo "Usage: $0 proc_output_dir testname.md5" - echo "Requires: md5sum" + echo "Requires: md5sum (Linux) or md5 (macOS)" exit 1 fi @@ -45,7 +45,10 @@ else md5=md5sum fi -echo "" > $2 +tmpfile=`mktemp` +echo "" > $tmpfile for f in $(find $1 -name "*c??.wav"); do - echo ${f##*/} $($md5 $f | awk '{ print toupper($1) }') >>$2 + echo ${f##*/} $($md5 $f | awk '{ print toupper($1) }') >> $tmpfile done +cat $tmpfile | sort > $2 +rm -f $tmpfile -- GitLab From 4bf85a5f21b0c243196b5c281b28b6ce57c58e0b Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Fri, 23 Jun 2023 12:06:50 +0200 Subject: [PATCH 12/12] update .gitignore --- .gitignore | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 555d5fb8..5d3d341c 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ venv/ .idea/ .DS_Store !tests/data/**/*.wav +*.wav *.pcm *.bs *.192 @@ -17,12 +18,14 @@ experiments/selection/*/proc_input*/cat*/*.pcm experiments/selection/*/proc_input*/FOA*/*.wav experiments/selection/*/proc_input*/HOA2*/*.wav experiments/selection/*/background_noise/*.wav +experiments/selection/*/background_noise/*.txt +experiments/selection/*/proc_input*/*.wav +experiments/selection/*/proc_input*/*.pcm +experiments/selection/*/proc_input*/*.csv experiments/selection/*/proc_input*/*.log experiments/selection/*/proc_input*/*.yml experiments/selection/*/proc_output*/ -experiments/selection/*/config/*cat*-lab_*.yml -experiments/selection/*/config/*FOA*-lab_*.yml -experiments/selection/*/config/*HOA2*-lab_*.yml +experiments/selection/*/config/*-lab_*.yml experiments/selection/*/gen_input/IRs/*.wav experiments/selection/*/gen_input/items_mono/*.wav *~ -- GitLab