ryanheise

Results 1670 comments of ryanheise

Maybe editing is possible with ffmpeg but the license isn't ideal for mobile app distribution (maybe you could host a server to do the ffmpeg processing.)

@demberto thanks for contributing another possible solution, although AudioKit is probably the way to go since it doesn't have the same licensing issues that the GPL has, and AudioKit also...

@SarthakZunroof please find another plugin that deals with the microphone and make a feature request with that project. It is a bit off topic for the present issue so I...

There is some progress being made in #334 on an AVAudioEngine-based implementation. This should make it much easier to implement this functionality on iOS. Some notes for implementation, these are...

I guess you want to know the formula to map a semitone into a pitch adjustment scale. I don't actually know, because the underlying native API just says this scale...

Thanks for reporting, @akshdeep-singh . Actually there are several methods not implemented by just_audio_background: ``` androidEqualizerBandSetGain androidEqualizerGetParameters androidLoudnessEnhancerSetTargetGain audioEffectSetEnabled setCanUseNetworkResourcesForLiveStreamingWhilePaused setPitch setPreferredPeakBitRate setSkipSilence ``` I'll implement these at my next...

I don't intend to put an example in the documentation page in the short term as I think examples are best placed in the examples directory. However, I can improve...

Thanks, I'll try to incorporate some of that in the docs in the future. If you're not already familiar with byte range requests and chunked I/O, Google may be your...

@jemisgoti with `StreamAudioSource` you basically just need to write some code to output a stream of _encoded_ bytes, in one of the platform's supported audio encodings, not raw PCM audio....

I explained in my previous answer. raw PCM audio is not supported by this plugin, you need to encode it first. If you can encode it first, then you can...