ee3943b5b1
Build documentation / build (push) Failing after 0s
CI / check_code_quality (push) Has been cancelled
CI / test (deps-latest, ubuntu-latest, integration) (push) Has been cancelled
CI / test (deps-latest, ubuntu-latest, unit) (push) Has been cancelled
CI / test (deps-latest, windows-latest, integration) (push) Has been cancelled
CI / test (deps-latest, windows-latest, unit) (push) Has been cancelled
CI / test (deps-minimum, ubuntu-latest, integration) (push) Has been cancelled
CI / test (deps-minimum, ubuntu-latest, unit) (push) Has been cancelled
CI / test (deps-minimum, windows-latest, integration) (push) Has been cancelled
CI / test (deps-minimum, windows-latest, unit) (push) Has been cancelled
CI / test_py314 (deps-latest, ubuntu-latest, unit) (push) Has been cancelled
CI / test_py314 (deps-latest, windows-latest, unit) (push) Has been cancelled
CI / test_py314_future (deps-latest, ubuntu-latest, unit) (push) Has been cancelled
CI / test_py314_future (deps-latest, windows-latest, unit) (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
16 lines
627 B
Python
16 lines
627 B
Python
import numpy as np
|
|
from torchcodec.decoders import AudioDecoder as _AudioDecoder
|
|
|
|
|
|
class AudioDecoder(_AudioDecoder):
|
|
def __getitem__(self, key: str):
|
|
if key == "array":
|
|
y = self.get_all_samples().data.cpu().numpy()
|
|
return np.mean(y, axis=tuple(range(y.ndim - 1))) if y.ndim > 1 else y
|
|
elif key == "sampling_rate":
|
|
return self.get_samples_played_in_range(0, 0).sample_rate
|
|
elif hasattr(super(), "__getitem__"):
|
|
return super().__getitem__(key)
|
|
else:
|
|
raise TypeError("'torchcodec.decoders.AudioDecoder' object is not subscriptable")
|