diff --git a/base.sds b/base.sds index 6c41b8b..b206932 100644 --- a/base.sds +++ b/base.sds @@ -1,10 +1,10 @@ %Srdr-1.3 ' -' Surrounder base scene file +' Spatial Creator base scene file ' ' This is the primary scene file tested during development -' of Surrounder. It produces 5.1 surround output from stereo +' of Spatial Creator. It produces 5.1 surround output from stereo ' input. ' diff --git a/base_71.sds b/base_71.sds index a63d654..d79e354 100644 --- a/base_71.sds +++ b/base_71.sds @@ -1,10 +1,10 @@ %Srdr-1.3 ' -' Surrounder base scene file +' Spatial Creator base scene file ' ' This is the secondary scene file tested during development -' of Surrounder. It produces 7.1 surround output from stereo +' of Spatial Creator. It produces 7.1 surround output from stereo ' input. ' diff --git a/base_atmos.sds b/base_atmos.sds index 1b82e91..2f673b0 100644 --- a/base_atmos.sds +++ b/base_atmos.sds @@ -1,10 +1,10 @@ %Srdr-1.3 ' -' Surrounder Dolby Atmos scene file +' Spatial Creator Dolby Atmos scene file ' ' This is the scene file tested for Atmos during development -' of Surrounder. It produces Atmos 7.1.4 output from stereo +' of Spatial Creator. It produces Atmos 7.1.4 output from stereo ' input. ' diff --git a/constants.py b/constants.py index 7a6919e..e8104a7 100644 --- a/constants.py +++ b/constants.py @@ -11,7 +11,7 @@ def value_to_constant(value, filter_str=None): return keys[0] -Version = "1.0.0" +Version = "1.0.1" Versions = [ "1.0", diff --git a/main.py b/main.py index 8337b3e..1095487 100644 --- a/main.py +++ b/main.py @@ -6,9 +6,9 @@ import json parser = argparse.ArgumentParser( - prog='surrounder', + prog='spatial-creator', description='Turning stereo music into surround or Dolby Atmos', - epilog='Copyright (c) Equestria.dev Developers') + epilog='Copyright (c) Floofi Systems') parser.add_argument('input') parser.add_argument('scene') @@ -51,13 +51,13 @@ version = lines[0].split("-")[1] if version not in Versions: - print(f"This version of Surrounder does not support this Scene file. Supported versions: {', '.join(Versions)}") + print(f"This version of Spatial Creator does not support this Scene file. Supported versions: {', '.join(Versions)}") exit(1) if Versions.index(version) == len(Versions) - 1: - print(f"Surrounder {Version}, using Scene specification version {version} (native)") + print(f"Floofi Spatial Creator {Version}, using Scene specification version {version} (native)") else: - print(f"Surrounder {Version}, using Scene specification version {version} (compatibility)") + print(f"Floofi Spatial Creator {Version}, using Scene specification version {version} (compatibility)") operations = [] @@ -598,7 +598,7 @@ *extra_args, f"./srdr_work/final{extension}" ], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) - os.rename(f"./srdr_work/final{extension}", os.path.splitext(input_file)[0] + f"_surrounder{extension}") + os.rename(f"./srdr_work/final{extension}", os.path.splitext(input_file)[0] + f"_fsc{extension}") case _: print(f"Invalid or unsupported command in this version: {name}") exit(2)