Loading scripts/parse_loudness_data.py +6 −1 Original line number Diff line number Diff line Loading @@ -7,6 +7,7 @@ import matplotlib.pyplot as plt import numpy as np import pandas as pd sys.path.append("./ivas-processing-scripts") from ivas_processing_scripts.utils import progressbar_update if os.environ.get("CI") or not sys.stdout.isatty(): Loading Loading @@ -223,7 +224,11 @@ def plot_loudness_by_bandwidth(df, in_fmt, out_fmt, out_dir): ax.set_xticks(range(len(bitrates))) ax.set_xticklabels( [ "ratesw all" if br == 132512 else int(br) if br == int(br) else round(br, 2) ( "ratesw all" if br == 132512 else int(br) if br == int(br) else round(br, 2) ) for br in bitrates ], rotation=45, Loading Loading
scripts/parse_loudness_data.py +6 −1 Original line number Diff line number Diff line Loading @@ -7,6 +7,7 @@ import matplotlib.pyplot as plt import numpy as np import pandas as pd sys.path.append("./ivas-processing-scripts") from ivas_processing_scripts.utils import progressbar_update if os.environ.get("CI") or not sys.stdout.isatty(): Loading Loading @@ -223,7 +224,11 @@ def plot_loudness_by_bandwidth(df, in_fmt, out_fmt, out_dir): ax.set_xticks(range(len(bitrates))) ax.set_xticklabels( [ "ratesw all" if br == 132512 else int(br) if br == int(br) else round(br, 2) ( "ratesw all" if br == 132512 else int(br) if br == int(br) else round(br, 2) ) for br in bitrates ], rotation=45, Loading