bmcfee / muda

A library for augmenting annotated audio data
ISC License
230 stars 33 forks source link

Support passing jams kwargs to muda's load/save functions #56

Closed justinsalamon closed 7 years ago

justinsalamon commented 7 years ago

It would be helpful to be able to pass jams kwargs to muda's load_jam_audio() and save() methods. Example use case: I want to skip json validation upon loading (via muda.load_jam_audio()) or saving (via muda.save()).

bmcfee commented 7 years ago

Can't do general kwargs because both load_jam_audio and save already use kwargs for manipulating audio io.

We could expose strict and validate for jams though.

justinsalamon commented 7 years ago

We could expose strict and validate for jams though.

👍