B4J Code Snippet On-the-fly snippet to convert video to audio file - jkhazraji    Sep 07, 2023   (8 reactions) *; import ws.schild.jave.encode.AudioAttributes; import ws.schild.jave.encode.EncodingAttributes; import ws.schild.jave.Encoder; import ws.schild.jave.MultimediaObject; import ws.schild.jave.info.MultimediaInfo; static public boolean convertV2A(String vFile, String aFile){ boolean succ B4J Question MP3 to wav conversion problem using Jave2 FFMPeg Library - zed    Jul 18, 2023 Show
Dim SourceFile As String = "D:\test.mp3"
Dim TargetFile As String = "D:\test.wav"
Dim AudioAttrs1 As AudioAttributes
AudioAttrs1.Initialize
AudioAttrs1.SetCodec("pcm_s16le")
Dim MO1 As MultimediaObject
MO1.Initialize
MO1.Create(SourceFile,"")
B4A Question Record MP3/LibLame alternative - moster67 (first post)    Feb 11, 2019   (2 reactions) You could of course use my ffmpeg-encoder which can convert wave to mp3. There may be other alternatives.
If you are interested, send me a PM. B4A Library [lib] liblame MP3 encoder/decoder - Albert Lin (first post)    Nov 08, 2020 Hi Warwound
It's very nice of having this encoder. everything works good.
But I cause crash when encode .wav to .mp3 with API29.
It is fine with API22. Could you please tell me how to make it work with API29
All the best,
Albert Lin B4A Question How to record from Mic, encode mp3 and Stream as mp3 - Erel (first post)    Jun 19, 2015   (2 reactions) Relevant links:
https://www.b4x./#content
https://www.b4x. B4A Question save byte voice list to root to mp3 file - DonManfred (first post)    Oct 01, 2019 Save the bytes to disc.
Use liblame to encode it to a mp3.
Copy the created mp3 to on of the phone memories. B4A Question [Solved] Correct command for MobileFFmpeg to convert a wav file to mp3 - prbmjr    May 24, 2021 Hi everyone!
How the correct command to execute the library FFmpeg to convert a wav file to mp3?
I used this:
ffmpeg -i input-file.wav -vn -ar 44100 -ac 2 -b:a 192k output-file.mp3
but I had the follow error:
log: Automatic encoder selection failed for output stream #0:0. Default encoder for fo B4J Question [SOLVED] Playing mp3 in Ubuntu / Debian - stevel05 (first post)    Sep 30, 2017 Presumably you need to install the correct codec for Ubuntu.
Alternatively you could make sure that the mp3 is encoded in a format that the mediaplayer already has a codec for.
Did you encode the mp3? Do you know what format it is? It sounds like it is not a standard format
Have you tried any o B4A Question Alternative to liblame MP3 encoder/decoder?? Error using sdk 29... - prbmjr    May 14, 2021 Hi everyone!
I'm creating a wav files using AudioStreamer library, this working very fine but I need to convert the wav files generated to mp3 files..
For that, I'm trying to use the liblame MP3 encoder/decoder, but I'm have the follow error when I'm using it:
Anyone could recommend me any oth B4i Question Record MP3 - iCAB    Dec 08, 2017   (1 reaction) Hi All
I am looking for a way to compress an audio file.
Luckily with B4A, I was able to find this library (thanks to Martin) that converts a wave file to mp3 which did job for me.
https://www.b4x.com/android/forum/threads/lib-liblame-mp3-encoder-decoder.22969/#content
is there any solution tha Page: 1   2   3   4   5   6   7   Powered by ColBERT |