1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
use numpy::{IntoPyArray, PyArray2, PyReadonlyArray2};
use pyo3::prelude::*;
use pyo3::types::PyByteArray;
use crate::backend::Signal;
pub type PyArraySamples = Py<PyArray2<f32>>;
/// An in-memory audio waveform.
#[pyclass(module = "babycat")]
#[derive(Clone, Debug)]
pub struct Waveform {
inner: crate::backend::Waveform,
}
impl From<crate::backend::Waveform> for Waveform {
fn from(inner: crate::backend::Waveform) -> Waveform {
Waveform { inner }
}
}
///
/// # Panics
/// This function panics if we cannot create a NumPy array of shape
/// `.(num_frames, num_channels)`.
pub fn interleaved_samples_to_pyarray(
py: Python<'_>,
num_channels: u16,
num_frames: usize,
interleaved_samples: Vec<f32>,
) -> PyArraySamples {
interleaved_samples
.into_pyarray(py)
.reshape([num_frames, num_channels as usize])
.unwrap()
.into()
}
impl IntoPy<PyArraySamples> for crate::backend::Waveform {
fn into_py(self, py: Python<'_>) -> PyArraySamples {
let num_channels = self.num_channels();
let num_frames = self.num_frames();
let interleaved_samples: Vec<f32> = self.into();
interleaved_samples_to_pyarray(py, num_channels, num_frames, interleaved_samples)
}
}
impl std::fmt::Display for Waveform {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"<babycat.Waveform: {} frames, {} channels, {} hz>",
self.inner.num_frames(),
self.inner.num_channels(),
self.inner.frame_rate_hz(),
)
}
}
#[pymethods]
impl Waveform {
/// Creates a silent waveform of ``num_frames`` frames.
///
/// Example:
/// **Creating 1000 frames of silence (in stereo).**
///
/// >>> from babycat import Waveform
/// >>> Waveform.from_frames_of_silence(
/// ... frame_rate_hz=44100,
/// ... num_channels=2,
/// ... num_frames=1000,
/// ... )
/// <babycat.Waveform: 1000 frames, 2 channels, 44100 hz>
///
/// Args:
/// frame_rate_hz(int): The frame rate to set for this silent audio
/// waveform.
///
/// num_channels(int): The number of channels to set.
///
/// num_frames(int): The number of frames to set.
///
/// Returns:
/// Waveform: A waveform representing silence.
///
#[staticmethod]
#[args("*", frame_rate_hz, num_channels, num_frames)]
#[pyo3(text_signature = "(
frame_rate_hz,
num_channels,
num_frames,
)")]
pub fn from_frames_of_silence(
py: Python<'_>,
frame_rate_hz: u32,
num_channels: u16,
num_frames: usize,
) -> Self {
py.allow_threads(move || {
crate::backend::Waveform::from_frames_of_silence(
frame_rate_hz,
num_channels,
num_frames,
)
})
.into()
}
/// Creates a silent waveform measured in milliseconds.
///
/// Example:
/// **Create 30 seconds of silence (in stereo).**
///
/// >>> from babycat import Waveform
/// >>> Waveform.from_milliseconds_of_silence(
/// ... frame_rate_hz=44100,
/// ... num_channels=2,
/// ... duration_milliseconds=30_000,
/// ... )
/// <babycat.Waveform: 1323000 frames, 2 channels, 44100 hz>
///
/// Args:
/// frame_rate_hz(int): The frame rate to set for this silent audio
/// waveform.
///
/// num_channels(int): The number of channels to set.
///
/// num_frames(int): The number of frames to set.
///
/// Returns:
/// Waveform: A waveform representing silence.
///
#[staticmethod]
#[args("*", frame_rate_hz, num_channels, duration_milliseconds)]
#[pyo3(text_signature = "(
frame_rate_hz,
num_channels,
duration_milliseconds,
)")]
pub fn from_milliseconds_of_silence(
py: Python<'_>,
frame_rate_hz: u32,
num_channels: u16,
duration_milliseconds: usize,
) -> Self {
py.allow_threads(move || {
crate::backend::Waveform::from_milliseconds_of_silence(
frame_rate_hz,
num_channels,
duration_milliseconds,
)
})
.into()
}
/// Creates a :py:class:`Waveform` from interleaved audio samples.
///
/// Example:
/// >>> from babycat import Waveform
/// >>> interleaved_samples = [-1.0, 0.0, 1.0, -1.0, 0.0, 1.0]
/// >>> waveform = Waveform.from_interleaved_samples(
/// ... frame_rate_hz=44_100,
/// ... num_channels=3,
/// ... interleaved_samples=interleaved_samples,
/// ... )
/// >>> waveform
/// <babycat.Waveform: 2 frames, 3 channels, 44100 hz>
///
/// Args:
/// frame_rate_hz(int): The frame rate that applies to the waveform
/// described by ``interleaved_samples``.
///
/// num_channels(int): The number of channels in the waveform
/// described by ``interleaved_samples``.
///
/// interleaved_samples(list): A one-dimensional Python list of
/// interleaved :py:class:`float` audio samples.
///
/// Returns:
/// Waveform: A waveform representing ``interleaved_samples``.
///
#[staticmethod]
#[args("*", frame_rate_hz, num_channels, interleaved_samples)]
#[pyo3(text_signature = "(
frame_rate_hz,
num_channels,
interleaved_samples,
)")]
#[allow(clippy::too_many_arguments)]
pub fn from_interleaved_samples(
py: Python<'_>,
frame_rate_hz: u32,
num_channels: u16,
interleaved_samples: Vec<f32>,
) -> Self {
py.allow_threads(move || {
crate::backend::Waveform::new(frame_rate_hz, num_channels, interleaved_samples)
})
.into()
}
/// Creates a :py:class:`Waveform` from a two-dimensional NumPy ``float32`` array.
///
/// This static method takes a two-dimensional NumPy array of the
/// shape ``(frames, channels)``.
///
/// Example:
/// >>> import numpy as np
/// >>> from babycat import Waveform
/// >>> frame = np.array([-1.0, 0.0, 1.0], dtype="float32")
/// >>> arr = np.stack([frame, frame])
/// >>> waveform = Waveform.from_numpy(
/// ... frame_rate_hz=44_100,
/// ... arr=arr,
/// ... )
/// waveform
/// <babycat.Waveform: 2 frames, 3 channel, 44100 hz>
///
/// Args:
/// frame_rate_hz(int): The frame rate that applies to the waveform
/// described by ``arr``.
///
/// arr: A two-dimensional NumPy array with the channels dimension
/// on axis 1.
///
/// Returns:
/// Waveform: A waveform with a copy of the waveform in ``arr``.
///
/// Raises:
/// TypeError: Raised when ``arr`` is the wrong shape or dtype.
///
#[staticmethod]
#[args("*", frame_rate_hz, arr)]
#[pyo3(text_signature = "(
frame_rate_hz,
arr,
)")]
#[allow(clippy::needless_pass_by_value)]
pub fn from_numpy(
py: Python<'_>,
frame_rate_hz: u32,
arr: PyReadonlyArray2<f32>,
) -> PyResult<Self> {
#[allow(clippy::cast_possible_truncation)]
let num_channels: u16 = arr.shape()[1] as u16;
let interleaved_samples: Vec<f32> = arr.to_vec().unwrap();
let waveform = py.allow_threads(move || {
crate::backend::Waveform::new(frame_rate_hz, num_channels, interleaved_samples)
});
Ok(waveform.into())
}
/// Decodes audio stored as ``bytes``.
///
/// Example:
/// **Decode from bytes while auto-detecting the format as MP3.**
///
/// >>> from babycat import Waveform
/// >>> with open("audio-for-tests/andreas-theme/track.flac", "rb") as fh:
/// ... the_bytes = fh.read()
/// >>> waveform = Waveform.from_encoded_bytes(the_bytes)
/// >>> waveform
/// <babycat.Waveform: 9586415 frames, 2 channels, 44100 hz>
///
/// Example:
/// **Decode from bytes with a file extension hint.**
///
/// >>> waveform2 = Waveform.from_encoded_bytes(
/// ... the_bytes,
/// ... file_extension="mp3",
/// ... )
///
/// Args:
/// encoded_bytes(bytes): A :py:class:`bytes` object
/// containing an *encoded* audio file, such as MP3 file.
///
/// start_time_milliseconds(int, optional): We discard
/// any audio before this millisecond offset. By default, this
/// does nothing and the audio is decoded from the beginning.
/// Negative offsets are invalid.
///
/// end_time_milliseconds(int, optional): We discard
/// any audio after this millisecond offset. By default,
/// this does nothing and the audio is decoded all the way
/// to the end. If ``start_time_milliseconds`` is specified,
/// then ``end_time_milliseconds`` must be greater. The resulting
///
/// frame_rate_hz(int, optional): A destination frame rate to resample
/// the audio to. Do not specify this parameter if you wish
/// Babycat to preserve the audio's original frame rate.
/// This does nothing if ``frame_rate_hz`` is equal to the
/// audio's original frame rate.
///
/// num_channels(int, optional): Set this to a positive integer ``n``
/// to select the *first* ``n`` channels stored in the
/// audio file. By default, Babycat will return all of the channels
/// in the original audio. This will raise an exception
/// if you specify a ``num_channels`` greater than the actual
/// number of channels in the audio.
///
/// convert_to_mono(bool, optional): Set to ``True`` to average all channels
/// into a single monophonic (mono) channel. If
/// ``num_channels = n`` is also specified, then only the
/// first ``n`` channels will be averaged. Note that
/// ``convert_to_mono`` cannot be set to ``True`` while
/// also setting ``num_channels = 1``.
///
/// zero_pad_ending(bool, optional): If you set this to ``True``,
/// Babycat will zero-pad the ending of the decoded waveform
/// to ensure that the output waveform's duration is exactly
/// ``end_time_milliseconds - start_time_milliseconds``.
/// By default, ``zero_pad_ending = False``, in which case
/// the output waveform will be shorter than
/// ``end_time_milliseconds - start_time_milliseconds``
/// if the input audio is shorter than ``end_time_milliseconds``.
/// Note that setting ``zero_pad_ending = True`` is
/// mutually exclusive with setting ``repeat_pad_ending = True``.
///
/// repeat_pad_ending(bool, optional): If you set this to ``True``,
/// Babycat will repeat the audio waveform to ensure that
/// the output waveform's duration is exactly
/// ``end_time_milliseconds - start_time_milliseconds``.
/// By default, ``repeat_pad_ending = False``, in which case
/// the output waveform will be shorter than
/// ``end_time_milliseconds - start_time_milliseconds``.
/// Note that setting ``repeat_pad_ending = True`` is
/// mutually exclusive with setting ``zero_pad_ending = True``.
///
/// resample_mode(int, optional): If you set ``frame_rate_hz``
/// to resample the audio when decoding, you can also set
/// ``resample_mode`` to pick which resampling backend to use.
/// The :py:mod:`babycat.resample_mode` submodule contains
/// the various available resampling algorithms compiled into Babycat.
/// By default, Babycat resamples audio using
/// `libsamplerate <http://www.mega-nerd.com/SRC/>`_ at its
/// highest-quality setting.
///
/// file_extension(str, optional): An *optional hint* of the input audio file's
/// encoding. An example of a valid value is ``"mp3"``. Babycat
/// will automatically detect the correct encoding of ``input_audio``,
/// even if ``file_extension`` is an incorrect guess.
///
/// mime_type(str, optional): An *optional hint* of the input audio file's
/// encoding. An example of a valid value is ``"audio/mpeg"``. Babycat
/// will automatically detect the correct encoding of ``input_audio``,
/// even if ``mime_type`` is an incorrect guess.
///
/// Returns:
/// Waveform: Returns a waveform decoded from ``encoded_bytes``.
///
/// Raises:
/// babycat.exceptions.FeatureNotCompiled: Raised when you are trying
/// to use a feature at runtime that as not included in Babycat
/// at compile-time.
///
/// babycat.exceptions.WrongTimeOffset: Raised when
/// ``start_time_milliseconds``and/or ``end_time_milliseconds``
/// is invalid.
///
/// babycat.exceptions.WrongNumChannels: Raised when you specified
/// a value for ``num_channels`` that is greater than the
/// number of channels the audio has.
///
/// babycat.exceptions.WrongNumChannelsAndMono: Raised when the
/// user sets both ``convert_to_mono = True`` and
/// ``num_channels = 1``.
///
/// babycat.exceptions.CannotZeroPadWithoutSpecifiedLength: Raised
/// when ``zero_pad_ending`` is set without setting
/// ``end_time_milliseconds``.
///
/// babycat.exceptions.UnknownInputEncoding: Raised when we
/// failed to detect valid audio in the input data.
///
/// babycat.exceptions.UnknownDecodeError: Raised when we
/// failed to decode the input audio stream, but
/// we don't know why.
///
/// babycat.exceptions.ResamplingError: Raised when we
/// failed to encode an audio stream into an output format.
///
/// babycat.exceptions.WrongFrameRate: Raised when the
/// user set ``frame_rate_hz`` to a value that we
/// cannot resample to.
///
/// babycat.exceptions.WrongFrameRateRatio: Raised
/// when ``frame_rate_hz`` would upsample or
/// downsample by a factor ``>= 256``. Try resampling in
/// smaller increments.
///
#[staticmethod]
#[args(
encoded_bytes,
"*",
start_time_milliseconds = 0,
end_time_milliseconds = 0,
frame_rate_hz = 0,
num_channels = 0,
convert_to_mono = false,
zero_pad_ending = false,
repeat_pad_ending = false,
resample_mode = 0,
decoding_backend = 0,
file_extension = "\"\"",
mime_type = "\"\""
)]
#[pyo3(text_signature = "(
encoded_bytes,
start_time_milliseconds = 0,
end_time_milliseconds= 0,
frame_rate_hz = 0,
num_channels = 0,
convert_to_mono = False,
zero_pad_ending = False,
repeat_pad_ending = False,
resample_mode = 0,
decoding_backend = 0,
file_extension = \"\",
mime_type = \"\",
)")]
#[allow(clippy::too_many_arguments)]
pub fn from_encoded_bytes(
py: Python<'_>,
encoded_bytes: &[u8],
start_time_milliseconds: usize,
end_time_milliseconds: usize,
frame_rate_hz: u32,
num_channels: u16,
convert_to_mono: bool,
zero_pad_ending: bool,
repeat_pad_ending: bool,
resample_mode: u32,
decoding_backend: u32,
file_extension: &str,
mime_type: &str,
) -> PyResult<Self> {
let wr = py.allow_threads(move || {
let waveform_args = crate::backend::WaveformArgs {
start_time_milliseconds,
end_time_milliseconds,
frame_rate_hz,
num_channels,
convert_to_mono,
zero_pad_ending,
repeat_pad_ending,
resample_mode,
decoding_backend,
};
crate::backend::Waveform::from_encoded_bytes_with_hint(
encoded_bytes,
waveform_args,
file_extension,
mime_type,
)
});
let waveform = wr?;
Ok(waveform.into())
}
/// Decodes audio stored as ``bytes``, directly returning a NumPy array.
///
/// This method is just like :py:meth:`from_encoded_bytes`, but it
/// returns a NumPy array of shape ``(frames, channels)`` instead of
/// a :py:class:`Waveform` object.
///
/// See the documentation for :py:meth:`from_encoded_bytes`
/// for a complete list of raised exceptions.
///
/// Args:
/// encoded_bytes(bytes): A :py:class:`bytes` object
/// containing an *encoded* audio file, such as MP3 file.
///
/// start_time_milliseconds(int, optional): We discard
/// any audio before this millisecond offset. By default, this
/// does nothing and the audio is decoded from the beginning.
/// Negative offsets are invalid.
///
/// end_time_milliseconds(int, optional): We discard
/// any audio after this millisecond offset. By default,
/// this does nothing and the audio is decoded all the way
/// to the end. If ``start_time_milliseconds`` is specified,
/// then ``end_time_milliseconds`` must be greater. The resulting
///
/// frame_rate_hz(int, optional): A destination frame rate to resample
/// the audio to. Do not specify this parameter if you wish
/// Babycat to preserve the audio's original frame rate.
/// This does nothing if ``frame_rate_hz`` is equal to the
/// audio's original frame rate.
///
/// num_channels(int, optional): Set this to a positive integer ``n``
/// to select the *first* ``n`` channels stored in the
/// audio file. By default, Babycat will return all of the channels
/// in the original audio. This will raise an exception
/// if you specify a ``num_channels`` greater than the actual
/// number of channels in the audio.
///
/// convert_to_mono(bool, optional): Set to ``True`` to average all channels
/// into a single monophonic (mono) channel. If
/// ``num_channels = n`` is also specified, then only the
/// first ``n`` channels will be averaged. Note that
/// ``convert_to_mono`` cannot be set to ``True`` while
/// also setting ``num_channels = 1``.
///
/// zero_pad_ending(bool, optional): If you set this to ``True``,
/// Babycat will zero-pad the ending of the decoded waveform
/// to ensure that the output waveform's duration is exactly
/// ``end_time_milliseconds - start_time_milliseconds``.
/// By default, ``zero_pad_ending = False``, in which case
/// the output waveform will be shorter than
/// ``end_time_milliseconds - start_time_milliseconds``
/// if the input audio is shorter than ``end_time_milliseconds``.
/// Note that setting ``zero_pad_ending = True`` is
/// mutually exclusive with setting ``repeat_pad_ending = True``.
///
/// repeat_pad_ending(bool, optional): If you set this to ``True``,
/// Babycat will repeat the audio waveform to ensure that
/// the output waveform's duration is exactly
/// ``end_time_milliseconds - start_time_milliseconds``.
/// By default, ``repeat_pad_ending = False``, in which case
/// the output waveform will be shorter than
/// ``end_time_milliseconds - start_time_milliseconds``.
/// Note that setting ``repeat_pad_ending = True`` is
/// mutually exclusive with setting ``zero_pad_ending = True``.
///
/// resample_mode(int, optional): If you set ``frame_rate_hz``
/// to resample the audio when decoding, you can also set
/// ``resample_mode`` to pick which resampling backend to use.
/// The :py:mod:`babycat.resample_mode` submodule contains
/// the various available resampling algorithms compiled into Babycat.
/// By default, Babycat resamples audio using
/// `libsamplerate <http://www.mega-nerd.com/SRC/>`_ at its
/// highest-quality setting.
///
/// decoding_backend(int, optional): Sets the audio decoding
/// backend to use. Defaults to the Symphonia backend.
///
/// Returns:
/// numpy.ndarray: A NumPy array of shape ``(frames, channels)``
/// of the decoded audio waveform.
///
#[staticmethod]
#[args(
encoded_bytes,
"*",
start_time_milliseconds = 0,
end_time_milliseconds = 0,
frame_rate_hz = 0,
num_channels = 0,
convert_to_mono = false,
zero_pad_ending = false,
repeat_pad_ending = false,
resample_mode = 0,
decoding_backend = 0,
file_extension = "\"\"",
mime_type = "\"\""
)]
#[pyo3(text_signature = "(
encoded_bytes,
start_time_milliseconds = 0,
end_time_milliseconds= 0,
frame_rate_hz = 0,
num_channels = 0,
convert_to_mono = False,
zero_pad_ending = False,
repeat_pad_ending = False,
resample_mode = 0,
decoding_backend = 0,
file_extension = \"\",
mime_type = \"\",
)")]
#[allow(clippy::too_many_arguments)]
pub fn from_encoded_bytes_into_numpy(
py: Python<'_>,
encoded_bytes: &[u8],
start_time_milliseconds: usize,
end_time_milliseconds: usize,
frame_rate_hz: u32,
num_channels: u16,
convert_to_mono: bool,
zero_pad_ending: bool,
repeat_pad_ending: bool,
resample_mode: u32,
decoding_backend: u32,
file_extension: &str,
mime_type: &str,
) -> PyResult<PyArraySamples> {
let wr = py.allow_threads(move || {
let waveform_args = crate::backend::WaveformArgs {
start_time_milliseconds,
end_time_milliseconds,
frame_rate_hz,
num_channels,
convert_to_mono,
zero_pad_ending,
repeat_pad_ending,
resample_mode,
decoding_backend,
};
crate::backend::Waveform::from_encoded_bytes_with_hint(
encoded_bytes,
waveform_args,
file_extension,
mime_type,
)
});
let waveform = wr?;
Ok(waveform.into_py(py))
}
/// Decodes audio stored in a local file.
///
/// Example:
/// **Decode an entire audio file with default arguments.**
///
/// >>> from babycat import Waveform
/// >>> waveform = Waveform.from_file(
/// ... "audio-for-tests/andreas-theme/track.flac",
/// ... )
/// >>> waveform
/// <babycat.Waveform: 9586415 frames, 2 channels, 44100 hz>
/// >>> waveform.num_frames
/// 9586415
/// >>> waveform.num_channels
/// 2
/// >>> waveform.frame_rate_hz
/// 44100
/// >>> waveform.to_numpy().shape
/// (9586415, 2)
///
/// Example:
/// **Decode the first 30 seconds of the audio file.**
///
/// >>> waveform = Waveform.from_file(
/// ... "audio-for-tests/andreas-theme/track.flac",
/// ... end_time_milliseconds=30_000,
/// ... )
/// >>> waveform
/// <babycat.Waveform: 1323000 frames, 2 channels, 44100 hz>
///
/// Example:
/// **Decode the entire audio file and resampling up to 48,000hz.**
///
/// >>> waveform = Waveform.from_file(
/// ... "audio-for-tests/andreas-theme/track.flac",
/// ... frame_rate_hz=48000,
/// ... )
/// >>> waveform
/// <babycat.Waveform: 10434194 frames, 2 channels, 48000 hz>
///
/// Example:
/// **Decode the first 30 seconds and resample up to 48,000hz.**
///
/// >>> waveform = Waveform.from_file(
/// ... "audio-for-tests/andreas-theme/track.flac",
/// ... end_time_milliseconds=30_000,
/// ... frame_rate_hz=48000,
/// ... )
/// >>> waveform
/// <babycat.Waveform: 1440000 frames, 2 channels, 48000 hz>
///
/// Args:
/// filename(str): The path to an audio file on the local
/// filesystem.
///
/// start_time_milliseconds(int, optional): We discard
/// any audio before this millisecond offset. By default, this
/// does nothing and the audio is decoded from the beginning.
/// Negative offsets are invalid.
///
/// end_time_milliseconds(int, optional): We discard
/// any audio after this millisecond offset. By default,
/// this does nothing and the audio is decoded all the way
/// to the end. If ``start_time_milliseconds`` is specified,
/// then ``end_time_milliseconds`` must be greater. The resulting
///
/// frame_rate_hz(int, optional): A destination frame rate to resample
/// the audio to. Do not specify this parameter if you wish
/// Babycat to preserve the audio's original frame rate.
/// This does nothing if ``frame_rate_hz`` is equal to the
/// audio's original frame rate.
///
/// num_channels(int, optional): Set this to a positive integer ``n``
/// to select the *first* ``n`` channels stored in the
/// audio file. By default, Babycat will return all of the channels
/// in the original audio. This will raise an exception
/// if you specify a ``num_channels`` greater than the actual
/// number of channels in the audio.
///
/// convert_to_mono(bool, optional): Set to ``True`` to average all channels
/// into a single monophonic (mono) channel. If
/// ``num_channels = n`` is also specified, then only the
/// first ``n`` channels will be averaged. Note that
/// ``convert_to_mono`` cannot be set to ``True`` while
/// also setting ``num_channels = 1``.
///
/// zero_pad_ending(bool, optional): If you set this to ``True``,
/// Babycat will zero-pad the ending of the decoded waveform
/// to ensure that the output waveform's duration is exactly
/// ``end_time_milliseconds - start_time_milliseconds``.
/// By default, ``zero_pad_ending = False``, in which case
/// the output waveform will be shorter than
/// ``end_time_milliseconds - start_time_milliseconds``
/// if the input audio is shorter than ``end_time_milliseconds``.
/// Note that setting ``zero_pad_ending = True`` is
/// mutually exclusive with setting ``repeat_pad_ending = True``.
///
/// repeat_pad_ending(bool, optional): If you set this to ``True``,
/// Babycat will repeat the audio waveform to ensure that
/// the output waveform's duration is exactly
/// ``end_time_milliseconds - start_time_milliseconds``.
/// By default, ``repeat_pad_ending = False``, in which case
/// the output waveform will be shorter than
/// ``end_time_milliseconds - start_time_milliseconds``.
/// Note that setting ``repeat_pad_ending = True`` is
/// mutually exclusive with setting ``zero_pad_ending = True``.
///
/// resample_mode(int, optional): If you set ``frame_rate_hz``
/// to resample the audio when decoding, you can also set
/// ``resample_mode`` to pick which resampling backend to use.
/// The :py:mod:`babycat.resample_mode` submodule contains
/// the various available resampling algorithms compiled into Babycat.
/// By default, Babycat resamples audio using
/// `libsamplerate <http://www.mega-nerd.com/SRC/>`_ at its
/// highest-quality setting.
///
/// decoding_backend(int, optional): Sets the audio decoding
/// backend to use. Defaults to the Symphonia backend.
///
/// Returns:
/// Waveform: A waveform decoded from ``filename``.
///
/// Raises:
/// FileNotFoundError: Raised when we cannot find
/// ``filename`` on the local filesystem.
///
/// IsADirectoryError: Raised when ``filename``
/// resolves to a directory on the local
/// instead of a file.
///
/// babycat.exceptions.FeatureNotCompiled: Raised when you are trying
/// to use a feature at runtime that as not included in Babycat
/// at compile-time.
///
/// babycat.exceptions.WrongTimeOffset: Raised when
/// ``start_time_milliseconds``and/or ``end_time_milliseconds``
/// is invalid.
///
/// babycat.exceptions.WrongNumChannels: Raised when you specified
/// a value for ``num_channels`` that is greater than the
/// number of channels the audio has.
///
/// babycat.exceptions.WrongNumChannelsAndMono: Raised when the
/// user sets both ``convert_to_mono = True`` and
/// ``num_channels = 1``.
///
/// babycat.exceptions.CannotZeroPadWithoutSpecifiedLength: Raised
/// when ``zero_pad_ending`` is set without setting
/// ``end_time_milliseconds``.
///
/// babycat.exceptions.UnknownInputEncoding: Raised when we
/// failed to detect valid audio in the input data.
///
/// babycat.exceptions.UnknownDecodeError: Raised when we
/// failed to decode the input audio stream, but
/// we don't know why.
///
/// babycat.exceptions.ResamplingError: Raised when we
/// failed to encode an audio stream into an output format.
///
/// babycat.exceptions.WrongFrameRate: Raised when the
/// user set ``frame_rate_hz`` to a value that we
/// cannot resample to.
///
/// babycat.exceptions.WrongFrameRateRatio: Raised
/// when ``frame_rate_hz`` would upsample or
/// downsample by a factor ``>= 256``. Try resampling in
/// smaller increments.
///
#[cfg(feature = "enable-filesystem")]
#[staticmethod]
#[args(
filename,
"*",
start_time_milliseconds = 0,
end_time_milliseconds = 0,
frame_rate_hz = 0,
num_channels = 0,
convert_to_mono = false,
zero_pad_ending = false,
repeat_pad_ending = false,
resample_mode = 0,
decoding_backend = 0
)]
#[pyo3(text_signature = "(
filename,
start_time_milliseconds = 0,
end_time_milliseconds= 0,
frame_rate_hz = 0,
num_channels = 0,
convert_to_mono = False,
zero_pad_ending = False,
repeat_pad_ending = False,
resample_mode = 0,
decoding_backend = 0,
)")]
#[allow(clippy::too_many_arguments)]
pub fn from_file(
py: Python<'_>,
filename: &str,
start_time_milliseconds: usize,
end_time_milliseconds: usize,
frame_rate_hz: u32,
num_channels: u16,
convert_to_mono: bool,
zero_pad_ending: bool,
repeat_pad_ending: bool,
resample_mode: u32,
decoding_backend: u32,
) -> PyResult<Self> {
let wr = py.allow_threads(move || {
let waveform_args = crate::backend::WaveformArgs {
start_time_milliseconds,
end_time_milliseconds,
frame_rate_hz,
num_channels,
convert_to_mono,
zero_pad_ending,
repeat_pad_ending,
resample_mode,
decoding_backend,
};
crate::backend::Waveform::from_file(filename, waveform_args)
});
let waveform = wr?;
Ok(waveform.into())
}
/// Decodes audio stored in a local file, directly returning a NumPy array.
///
/// This method is just like :py:meth:`from_file`, but it
/// returns a NumPy array of shape ``(frames, channels)`` instead of
/// a :py:class:`Waveform` object.
///
///
/// See the documentation for :py:meth:`from_file`
/// for a complete list of raised exceptions.
///
/// Args:
/// filename(str): The path to an audio file on the local
/// filesystem.
///
/// start_time_milliseconds(int, optional): We discard
/// any audio before this millisecond offset. By default, this
/// does nothing and the audio is decoded from the beginning.
/// Negative offsets are invalid.
///
/// end_time_milliseconds(int, optional): We discard
/// any audio after this millisecond offset. By default,
/// this does nothing and the audio is decoded all the way
/// to the end. If ``start_time_milliseconds`` is specified,
/// then ``end_time_milliseconds`` must be greater. The resulting
///
/// frame_rate_hz(int, optional): A destination frame rate to resample
/// the audio to. Do not specify this parameter if you wish
/// Babycat to preserve the audio's original frame rate.
/// This does nothing if ``frame_rate_hz`` is equal to the
/// audio's original frame rate.
///
/// num_channels(int, optional): Set this to a positive integer ``n``
/// to select the *first* ``n`` channels stored in the
/// audio file. By default, Babycat will return all of the channels
/// in the original audio. This will raise an exception
/// if you specify a ``num_channels`` greater than the actual
/// number of channels in the audio.
///
/// convert_to_mono(bool, optional): Set to ``True`` to average all channels
/// into a single monophonic (mono) channel. If
/// ``num_channels = n`` is also specified, then only the
/// first ``n`` channels will be averaged. Note that
/// ``convert_to_mono`` cannot be set to ``True`` while
/// also setting ``num_channels = 1``.
///
/// zero_pad_ending(bool, optional): If you set this to ``True``,
/// Babycat will zero-pad the ending of the decoded waveform
/// to ensure that the output waveform's duration is exactly
/// ``end_time_milliseconds - start_time_milliseconds``.
/// By default, ``zero_pad_ending = False``, in which case
/// the output waveform will be shorter than
/// ``end_time_milliseconds - start_time_milliseconds``
/// if the input audio is shorter than ``end_time_milliseconds``.
/// Note that setting ``zero_pad_ending = True`` is
/// mutually exclusive with setting ``repeat_pad_ending = True``.
///
/// repeat_pad_ending(bool, optional): If you set this to ``True``,
/// Babycat will repeat the audio waveform to ensure that
/// the output waveform's duration is exactly
/// ``end_time_milliseconds - start_time_milliseconds``.
/// By default, ``repeat_pad_ending = False``, in which case
/// the output waveform will be shorter than
/// ``end_time_milliseconds - start_time_milliseconds``.
/// Note that setting ``repeat_pad_ending = True`` is
/// mutually exclusive with setting ``zero_pad_ending = True``.
///
/// resample_mode(int, optional): If you set ``frame_rate_hz``
/// to resample the audio when decoding, you can also set
/// ``resample_mode`` to pick which resampling backend to use.
/// The :py:mod:`babycat.resample_mode` submodule contains
/// the various available resampling algorithms compiled into Babycat.
/// By default, Babycat resamples audio using
/// `libsamplerate <http://www.mega-nerd.com/SRC/>`_ at its
/// highest-quality setting.
///
/// decoding_backend(int, optional): Sets the audio decoding
/// backend to use. Defaults to the Symphonia backend.
///
/// Returns:
/// numpy.ndarray: A NumPy array of shape ``(frames, channels)``
/// of the decoded audio waveform.
///
#[cfg(feature = "enable-filesystem")]
#[staticmethod]
#[args(
filename,
"*",
start_time_milliseconds = 0,
end_time_milliseconds = 0,
frame_rate_hz = 0,
num_channels = 0,
convert_to_mono = false,
zero_pad_ending = false,
repeat_pad_ending = false,
resample_mode = 0,
decoding_backend = 0
)]
#[pyo3(text_signature = "(
filename,
start_time_milliseconds = 0,
end_time_milliseconds= 0,
frame_rate_hz = 0,
num_channels = 0,
convert_to_mono = False,
zero_pad_ending = False,
repeat_pad_ending = False,
resample_mode = 0,
decoding_backend = 0,
)")]
#[allow(clippy::too_many_arguments)]
pub fn from_file_into_numpy(
py: Python<'_>,
filename: &str,
start_time_milliseconds: usize,
end_time_milliseconds: usize,
frame_rate_hz: u32,
num_channels: u16,
convert_to_mono: bool,
zero_pad_ending: bool,
repeat_pad_ending: bool,
resample_mode: u32,
decoding_backend: u32,
) -> PyResult<PyArraySamples> {
let wr = py.allow_threads(move || {
let waveform_args = crate::backend::WaveformArgs {
start_time_milliseconds,
end_time_milliseconds,
frame_rate_hz,
num_channels,
convert_to_mono,
zero_pad_ending,
repeat_pad_ending,
resample_mode,
decoding_backend,
};
crate::backend::Waveform::from_file(filename, waveform_args)
});
let waveform = wr?;
Ok(waveform.into_py(py))
}
/// Returns the decoded waveform's frame rate in hertz.
///
/// If you did not set ``frame_rate_hz`` as an argument during decoding,
/// then this value will be the frame rate that Babycat detected from
/// the audio.
///
/// If you *did* set ``frame_rate_hz`` during decoding, then this value
/// will be the value you set.
///
/// Returns:
/// int: The frame rate.
///
#[getter]
pub fn get_frame_rate_hz(&self) -> u32 {
self.inner.frame_rate_hz()
}
/// Returns the number of channels in the decoded waveform.
///
/// If you did not set ``num_channels`` as an argument during decoding,
/// then this value will be the total number of channels found in the audio.
///
/// If you *did* set ``num_channels`` during decoding, then this value
/// will be the value you set.
///
/// Returns:
/// int: The number of channels
///
#[getter]
pub fn get_num_channels(&self) -> u16 {
self.inner.num_channels()
}
/// Returns the number of frames in the decoded waveform.
///
/// This will be the total number of frames founded in the encoded
/// audio--unless you trimmed the waveform during decoding by setting
/// ``start_time_milliseconds``, ``end_time_milliseconds``, or both.
///
/// Returns:
/// int: The number of frames
///
#[getter]
pub fn get_num_frames(&self) -> usize {
self.inner.num_frames()
}
/// Resamples the waveform using the default resampler.
///
/// By default, Babycat resamples audio using
/// `libsamplerate <http://www.mega-nerd.com/SRC/>`_ at its
/// highest-quality setting.
///
/// Example:
/// **Resample from 44,100 hz to 88,200 hz.**
///
/// >>> from babycat import Waveform
/// >>>
/// >>> waveform = Waveform.from_frames_of_silence(
/// ... frame_rate_hz=44100,
/// ... num_channels=2,
/// ... num_frames=1000,
/// ... )
/// >>> waveform
/// <babycat.Waveform: 1000 frames, 2 channels, 44100 hz>
/// >>> resampled = waveform.resample(11025)
/// <babycat.Waveform: 250 frames, 2 channels, 11025 hz>
///
/// Args:
/// frame_rate_hz(int): The target frame rate to resample the waveform to.
///
/// Returns:
/// Waveform: A new waveform resampled at the given
/// frame rate.
///
/// Raises:
/// babycat.exceptions.FeatureNotCompiled: Raised when you are trying
/// to use a feature at runtime that as not included in Babycat
/// at compile-time.
///
/// babycat.exceptions.ResamplingError: Raised when we
/// failed to encode an audio stream into an output format.
///
#[args(frame_rate_hz)]
#[pyo3(text_signature = "(
frame_rate_hz,
)")]
pub fn resample(&self, py: Python<'_>, frame_rate_hz: u32) -> PyResult<Self> {
let wr = py.allow_threads(move || self.inner.resample(frame_rate_hz));
let waveform = wr?;
Ok(waveform.into())
}
/// Resamples the waveform with the resampler of your choice.
///
/// Babycat comes with different backends for resampling audio
/// waveforms from one frame rate to another frame rate.
///
/// By default, Babycat resamples audio using
/// `libsamplerate <http://www.mega-nerd.com/SRC/>`_ at its
/// highest-quality setting. Babycat also comes with two other
/// resampling backends that are often faster--but produce
/// slightly lower quality output.
///
/// Example:
/// **Resample from 44,100 hz to 88,200 hz.**
///
/// >>> from babycat import Waveform
/// >>> from babycat.resample_mode import *
/// >>>
/// >>> waveform = Waveform.from_frames_of_silence(
/// ... frame_rate_hz=44100,
/// ... num_channels=2,
/// ... num_frames=1000,
/// ... )
/// >>> waveform
/// <babycat.Waveform: 1000 frames, 2 channels, 44100 hz>
/// >>> resampled = waveform.resample_by_mode(
/// ... frame_rate_hz=11025,
/// ... resample_mode=RESAMPLE_MODE_BABYCAT_SINC,
/// ... )
/// <babycat.Waveform: 250 frames, 2 channels, 11025 hz>
///
/// Args:
/// frame_rate_hz(int): The target frame rate to resample to.
///
/// resample_mode(int): The resampler to use. This has to be
/// one of the constants in :py:mod:`babycat.resample_mode`.
///
/// Returns:
/// Waveform: A new waveform resampled at the given
/// frame rate.
///
/// Raises:
/// babycat.exceptions.FeatureNotCompiled: Raised when you are trying
/// to use a feature at runtime that as not included in Babycat
/// at compile-time.
///
/// babycat.exceptions.ResamplingError: Raised when we
/// failed to encode an audio stream into an output format.
///
#[args("*", frame_rate_hz, resample_mode)]
#[pyo3(text_signature = "(
frame_rate_hz,
resample_mode,
)")]
pub fn resample_by_mode(
&self,
py: Python<'_>,
frame_rate_hz: u32,
resample_mode: u32,
) -> PyResult<Self> {
let wr =
py.allow_threads(move || self.inner.resample_by_mode(frame_rate_hz, resample_mode));
let waveform = wr?;
Ok(waveform.into())
}
/// Return a given audio sample belonging to a specific frame and channel.
///
/// This method performs bounds checks. If you want an unsafe
/// method that does not perform bounds checks, use
/// :py:meth:`get_unchecked_sample`.
///
/// Args:
/// frame_idx: The index of the given frame to query.
///
/// channel_idx: the index of the given channel to query.
///
/// Returns:
/// Returns ``None`` if ``frame_idx`` or ``channel_idx``
/// is out-of-bounds. Otherwise, it returns an Audio sample as
/// a native Python 64-bit :py:class:`float` value.
///
#[args(frame_idx, channel_idx)]
#[pyo3(text_signature = "(
self,
frame_idx,
channel_idx,
)")]
pub fn get_sample(&self, frame_idx: usize, channel_idx: u16) -> Option<f32> {
self.inner.get_sample(frame_idx, channel_idx)
}
/// Return a given audio sample belonging to a specific frame and channel,
/// *without* performing any bounds checks.
///
/// If you want bounds checking, use the :py:meth:`get_sample` method.
///
/// Args:
/// frame_idx: The index of the given frame to query.
///
/// channel_idx: the index of the given channel to query.
///
/// Returns:
/// Returns ``None`` if ``frame_idx`` or ``channel_idx``
/// is out-of-bounds. Otherwise, it returns an Audio sample as
/// a native Python 64-bit :py:class:`float` value.
///
#[args(frame_idx, channel_idx)]
#[pyo3(text_signature = "(
self,
frame_idx,
channel_idx,
)")]
#[allow(clippy::missing_safety_doc)]
pub unsafe fn get_unchecked_sample(&self, frame_idx: usize, channel_idx: u16) -> f32 {
self.inner.get_unchecked_sample(frame_idx, channel_idx)
}
/// Returns the audio waveform as a Python list of interleaved samples.
#[args()]
#[pyo3(text_signature = "()")]
pub fn to_interleaved_samples(&self) -> Vec<f32> {
self.inner.to_interleaved_samples().to_owned()
}
/// Returns the waveform as a 2D :py:class:`numpy.ndarray` array with shape ``(frames, channels)``
///
/// Babycat internally stores decoded audio as a Rust ``Vec<f32>``.
/// This method converts the ``Vec<f32>`` into a NumPy array.
/// Babycat does not internally cache the NumPy array, so avoid
/// calling this method multiple times on the same
/// :py:class:`~babycat.Waveform`.
///
/// Babycat is also designed to release the Python Global Interpreter
/// Lock (GIL) when *decoding* audio into a ``Vec<f32>``, but Babycat
/// re-acquires the GIL when converting the the ``Vec<f32>`` into a NumPy array.
///
/// Returns:
/// numpy.ndarray: A NumPy array with frames as the first axis
/// and channels as the second axis.
///
#[args()]
#[pyo3(text_signature = "()")]
pub fn to_numpy(&self, py: Python) -> PyArraySamples {
let num_channels = self.inner.num_channels();
let num_frames = self.inner.num_frames();
let interleaved_samples: Vec<f32> = self.inner.to_interleaved_samples().to_owned();
interleaved_samples_to_pyarray(py, num_channels, num_frames, interleaved_samples)
}
/// Encodes the waveform into a :py:class:`bytearray` in the WAV format.
///
/// Example:
/// **Decode an MP3 file and re-encode it as WAV.**
///
/// >>> from babycat import Waveform
/// >>> waveform = Waveform.from_file(
/// ... "audio-for-tests/andreas-theme/track.flac",
/// ... )
/// >>> waveform
/// <babycat.Waveform: 9586415 frames, 2 channels, 44100 hz>
/// >>> arr = waveform.to_wav_buffer()
/// >>> type(arr)
/// >>> len(arr)
///
/// Returns:
/// bytearray: The encoded WAV file.
///
/// Raises:
/// babycat.exceptions.UnknownEncodeError: When something went wrong with the
/// encoding.
///
#[args()]
#[pyo3(text_signature = "()")]
pub fn to_wav_buffer(&self, py: Python) -> PyResult<Py<PyAny>> {
match self.inner.to_wav_buffer() {
Ok(vec_u8) => Ok((*PyByteArray::new(py, &vec_u8)).to_object(py)),
Err(err) => Err(PyErr::from(err)),
}
}
/// Writes the waveform to the filesystem as a WAV file.
///
/// Example:
/// **Decode an MP3 file and re-encode it as WAV.**
///
/// >>> from babycat import Waveform
/// >>> waveform = Waveform.from_file(
/// ... "audio-for-tests/andreas-theme/track.flac",
/// ... )
/// >>> waveform
/// <babycat.Waveform: 9586415 frames, 2 channels, 44100 hz>
/// >>> waveform.to_wav_file("track.wav")
///
/// Args:
/// filename(str): The filename to write the WAV file to.
///
/// Raises:
/// babycat.exceptions.UnknownEncodeError: When something went wrong with the
/// encoding.
///
#[cfg(feature = "enable-filesystem")]
#[args(filename)]
#[pyo3(text_signature = "(filename)")]
pub fn to_wav_file(&self, filename: &str) -> PyResult<()> {
self.inner.to_wav_file(filename).map_err(PyErr::from)
}
/// Generates an HTML audio widget in IPython and Jupyter notebooks.
pub fn _repr_html_(&self) -> PyResult<String> {
let wav = self.inner.to_wav_buffer()?;
let wav_buffer_base64 = base64::encode(&wav);
Ok(format!(
"
<audio controls>
<source src='data:audio/wav;base64,{}' type='audio/wav' />
Your browser does not support the audio element.
</audio>",
wav_buffer_base64
))
}
fn __repr__(&self) -> PyResult<String> {
Ok(format!("{}", self))
}
}