Commit eb2f7a16 authored by Anika Treffehn's avatar Anika Treffehn
Browse files

fixed EVS for bitstream processing, loudness adjustement and MASA

parent 8e2ac3f7
Loading
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -276,13 +276,9 @@ class EVS(Processing):
                md_file_in = in_file.parent / (in_file.name + ".met")
                md_file_out = out_file.parent / (out_file.name + ".met")
                copyfile(md_file_in, md_file_out)
                # TODO: add next part for MASA
                # if split_chan_bs_unprocessed != split_chan_bs and self.tx_condition:
                #     out_file_meta_unprocessed = (
                #         out_file.parent
                #         / f"{out_file.stem.split('.')[0]}.evs.noerror{out_file.suffix}.{idx}.csv"
                #     )
                #     copyfile(in_meta[idx], out_file_meta_unprocessed)
                if split_chan_bs_unprocessed != split_chan_bs and self.tx_condition:
                    md_file_out_noerror = out_file.parent / (Path(out_file_unprocessed).name + ".met")
                    copyfile(md_file_in, md_file_out_noerror)

        elif out_file.suffix == ".txt":
            raise NotImplementedError(".txt file support is WIP")