Loading ivas_processing_scripts/processing/config.py +0 −2 Original line number Diff line number Diff line Loading @@ -78,8 +78,6 @@ def get_default_config_for_codecs(codec_name: str, ext_with_dot: str = "") -> di codec_name = codec_name.split(" ")[0] cod_bin = f"{codec_name}_cod{ext_with_dot}" dec_bin = f"{codec_name}_dec{ext_with_dot}" rend_bin = f"{codec_name}_rend{ext_with_dot}" cfg = { "cod": { Loading ivas_processing_scripts/processing/ivas.py +5 −2 Original line number Diff line number Diff line Loading @@ -319,7 +319,10 @@ class IVAS(Processing): # head tracking trajectory if trajectories: pre_trj, post_trj = trajectories if (self.out_fmt.name == "BINAURAL_SPLIT_CODED" or self.name == "ivas_trans_pre") and pre_trj: if ( self.out_fmt.name == "BINAURAL_SPLIT_CODED" or self.name == "ivas_trans_pre" ) and pre_trj: cmd.extend(["-T", str(pre_trj)]) elif self.out_fmt.name == "BINAURAL" and post_trj: cmd.extend(["-T", str(post_trj)]) Loading ivas_processing_scripts/trajectories/trajectories.py +1 −1 Original line number Diff line number Diff line Loading @@ -32,7 +32,7 @@ from pathlib import Path from typing import Tuple, Union from typing import Tuple def trajectory_search( Loading Loading
ivas_processing_scripts/processing/config.py +0 −2 Original line number Diff line number Diff line Loading @@ -78,8 +78,6 @@ def get_default_config_for_codecs(codec_name: str, ext_with_dot: str = "") -> di codec_name = codec_name.split(" ")[0] cod_bin = f"{codec_name}_cod{ext_with_dot}" dec_bin = f"{codec_name}_dec{ext_with_dot}" rend_bin = f"{codec_name}_rend{ext_with_dot}" cfg = { "cod": { Loading
ivas_processing_scripts/processing/ivas.py +5 −2 Original line number Diff line number Diff line Loading @@ -319,7 +319,10 @@ class IVAS(Processing): # head tracking trajectory if trajectories: pre_trj, post_trj = trajectories if (self.out_fmt.name == "BINAURAL_SPLIT_CODED" or self.name == "ivas_trans_pre") and pre_trj: if ( self.out_fmt.name == "BINAURAL_SPLIT_CODED" or self.name == "ivas_trans_pre" ) and pre_trj: cmd.extend(["-T", str(pre_trj)]) elif self.out_fmt.name == "BINAURAL" and post_trj: cmd.extend(["-T", str(post_trj)]) Loading
ivas_processing_scripts/trajectories/trajectories.py +1 −1 Original line number Diff line number Diff line Loading @@ -32,7 +32,7 @@ from pathlib import Path from typing import Tuple, Union from typing import Tuple def trajectory_search( Loading