B4A Question wave into amr? - dreamworld    Aug 26, 2013 Hello, how to convert wave format audio file into amr format file? The Android Recorder can save audio file in amr format.... B4A Question Creating AMR audio file. - JohnC (first post)    Jun 27, 2019 I believe there is issues with that lib in which the target sdk can't be set higher then 22, but... B4A Question Wav to amr format. - Juzer Hussain (first post)    Apr 15, 2019 Thank You, Syd Wright
Actually there are some well know apps like "Automatic"(call recorder) which save in amr. 100KB for 1 min recording.That much in wav format will have file size in MB... B4A Question Save Audio With Amr Format - NJDude (first post)    Aug 27, 2016 Read THIS... B4A Question libstreaming: A solution for streaming H.264, H.263, AMR, AAC using RTP on Android - elitevenkat (first post)    Jan 27, 2016 +1
Hello,
I found in gitHub a free lib for streaming in Rtsp audio and video. I think that it can be used with javaobject but I don't know very well java.
You can find the lib :
https://github.com... B4A Question how to Save AudioRecord file in amr format ? - Erel (first post)    May 15, 2014 See my answer here: http://www.b4x.com/android/forum/threads/wave-into-amr.32124/... B4A Question Native VoIP/SIP Stack Codec selection (G711, AMR, GSM) - echapeta (first post)    Oct 11, 2013   (1 reaction) UPDATE
We sniffed a call between Android Native Stacks and found that offer the following codecs in this order or prioritization:
a=rtpmap:9 6 GSM-EF R/8000..
a=rtpmap:97 AMR/ 8000..
a=rtpmap:3 GSM... B4A Question AudioRecorder - lib - is it works or not ? - JohnC (first post)    Jun 19, 2022 If you really need an AMR_WB format, you could record first record in a WAV format, then use FFmpeg to convert to AMR_WB format.... B4i Question Play 3GPP Audio files - iCAB    Feb 16, 2019 Hi All I am using the following code in B4A to record an audio file. Dim AR As AudioRecorder AR.Initialize AR.AudioSource = AR.AS_MIC AR.OutputFormat = AR.OF_THREE_GPP AR.AudioEncoder = AR.AE_AMR_NB AR.setOutputFile(GetTempFolder, FileName) Please note that, before I used the above format, I was using LibLame to encode mp3 and send to android & iOS devices. Now that LibLame is not working properly after upgrading the target SDK, I switched to... B4A Question Send mp3 to Whatsapp out of B4A Program - h725 (first post)    Mar 26, 2024   (1 reaction) Thank you for the fast response. I tried this and it working fine: Sub btnplaysong_longclick File.Copy(File.DirAssets, "song.mp3", Provider.SharedFolder, "song.mp3") Dim in As Intent in.Initialize(in.ACTION_SEND, "") in.SetPackage("com.whatsapp") in.setType("audio/3gp|audio/AMR|audio/mp3") in.PutExtra("android.intent.extra.STREAM", Provider.GetFileUri(FileToSend)) in.Flags = 1... Page: 1   2   3   4   5   6   7   |