(&self, source: &str)
| 337 | &self, |
| 338 | source: &str, |
| 339 | clip: MicClip, |
| 340 | bus_id: Option<AudioBusID>, |
| 341 | volume: f32, |
| 342 | pan: crate::types::AudioPan, |
| 343 | ) -> bool { |
| 344 | self.enqueue_play_stream_clip(source, clip, bus_id, volume, pan) |
| 345 | .is_ok() |
| 346 | } |
| 347 | |
| 348 | /// Enqueue a streamed clip; chunks with the same source play in order. |
no test coverage detected