0
votes
1answer
81 views

Is there any way to change bitrate of MP3 file in Android? [closed]

In Android, there are no classes or libraries to change bitrate of MP3 files. So we must use extended libraries. There are two extended library to do this, one is ffmpeg and another is lame. But in a ...
0
votes
0answers
28 views

How to call methods in libmp3lame.so to convert bitrate of a MP3 file?

I downloaded lame library and Android NDK, then I followed this link : http://developer.samsung.com/android/technical-docs/Porting-and-using-LAME-MP3-on-Android-with-JNI, after that I built ...
1
vote
0answers
115 views

Changing the bit rate of an MP3 bitrate on Android without ffmpeg

In my project, I have a 320kbps MP3 that is quite large. Since it's so big, I'd like to convert it to use a lower bit rate (about 80kbps). I know that the ffmpeg library exists to do this, but using ...
0
votes
0answers
74 views

Android MediaCodec: cannot change encoding bitrate on-the-fly

I would like to know whether there is a way to change encoding bitrate while using a AVC encoder using MediaCodec API (available since API 16). I tried to call .configure (format, null, null, ...
0
votes
0answers
222 views

Choosing bitrates programmatically with android videoview

I'm working on an Android app, where you can watch videos. I have the url of the videos, and I use VideoView to set it and start it, and that's working well. My question is stemmed from when video ...
1
vote
0answers
132 views

Getting error while setting bitrate in CAN interface for ICS

I am trying to set the bit-rate in i.Mx6 processor in android. I am using iproute2 utility to set bitrate for CAN controller. The command used to set the bitrate is given below: #ip link set can0 ...
0
votes
0answers
141 views

Android MediaPlay can output Framerate,video bitrate?

We have a project to need use MediaPlay control to playback network stream (rtsp protocal), It's easy and convenient,but i found it's difficult to get the framerate and bitrate ,video package count ...
6
votes
3answers
4k views

SoundPool: Error creating AudioTrack

I am having a problem With SoundPool as it refuses to work with my .ogg files. I am getting this error: AudioFlinger could not create track, status: -12 Error creating AudioTrack I've found a ...
6
votes
2answers
4k views

How to get Sampling rate and frequency of music file (MP3) in android?

I am developing audio player in android. So i want to add the details of the playing song i.e. Artist Name, Duration, Bit rate and sampling frequency. I can get Artist Name and duration of a music ...
2
votes
1answer
628 views

Does there exist any android api that returns mediafile bitrate, framerate etc?

I'm trying to build an android app which generates media file statistics e.g. bitrate for audio & bitrate, frame rate, codec information etc for video. I have been able to create playlist based ...