Joshua Pedrick
Joshua Pedrick
@SolarLiner , that sounds correct and it looks like you have a lot more experience with writing this kind of transformation. Do you think you could submit a PR or...
> If you want to pre-process a sound then your best bet is to use another tool (either graphical or CLI) for that, because the pitch shifting algorithms there are...
@SolarLiner I see, that makes a lot of sense(just changing the playback rate) and sounds like it'll do what I need. I had noticed the SFZ files were multi-sampled. So...
The main challenge I see is that the frames are interleaved [ (left, right), ... ], which isn't immediately the easiest to work with. I wonder if this structure would...
Yes, generally most math libraries expect de-structured data. For example: https://numpy.org/doc/stable/reference/generated/numpy.fft.fft.html Having the structure as `[(f32, f32)]` means that users will need to split and copy the data into two...
@SolarLiner my use case would be for transforming static assets, not realtime assets. Mostly, I think it would make sense to prototype transformations in Python, then for production code you...
I am also seeing this error with pyarrow: ``` import pyarrow._s3fs pyarrow._s3fs.initialize_s3(pyarrow._s3fs.S3LogLevel.Trace) import pyarrow.fs s3_fs = pyarrow.fs.S3FileSystem() ``` ``` ... [DEBUG] 2023-05-12 21:09:32.904 Aws::Config::ConfigFileProfileFSM [140237186401216] Found credential_process [INFO] 2023-05-12 21:09:32.904...
Hi @beinan , it should be security risk reducing, since there aren’t any credentials stored and the s3a credentials are always used to increase access to external resources.
@beinan @HelloHorizon any chance of getting this merged?