Gabriele Guerrisi
Gabriele Guerrisi
Hello, this is how I solved this problem (it's working): ``` viewPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() { @Override public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { if(position == 1) enableSliding(false); else enableSliding(true);...
Hello @2hamed , nested viewpagers: you should look for some function available to set the listening view (child/parent) from the user. Then it's the same code as above; viewpagers inside...
Hi, if someone still needs something similiar, I did a fork to achieve this. @SundeepK if you like it we can merge it to your master. This is not an...
For my project the latency in Android is the most blocking issue (making it useless for now, sadly). Do you have any idea of the possible reason?
Moreover, I already commented the issue #90 of that lib he mentioned... I was already using that library lol I am working now at the audio processing part itself, that...
I guess that you could use some stream-loop approach and split the incoming data after every 0.5s and write it to a file. I really hope the dev will find...
Hi, I have the same issue, I have a recorder and player with a stream in the middle (streamloop example). How you can see from the logs below - I...
Hi Larpoux, I need the separate live sound during the playback! You are right: the stereo pcm would be a clean solution. I would like to be able to edit...
I am working on Android actually, but I would like to be open to iOS implementation eventually - that's the flutter's main claim, after all! Thanks for the endian-ness tip:...
Maybe, do you have some code-sample to achieve the endianless conversion big-little and viceversa for lists? it is not clear to me how to do the conversion with my lists....