Zubaria Ashraf
Zubaria Ashraf

Reputation: 85

Converting bitrate of audio mp3 file which is playing online through link using android studio java

I am trying to change the bitrate of mp3 file which is playing online through link. As I have to change the audio streaming quality in android application. I have searched on it and found ffmpeg solution. But not got any suitable solution to implement this functionality. Any help?

Upvotes: 0

Views: 458

Answers (1)

TimeWasterNL
TimeWasterNL

Reputation: 57

The audio streaming quality depends on the file you are playing, not the client application. You will have to create a server-side solution to convert the audio file to a lower bitrate.

You can however download the file and convert it to a lower bitrate after, but I don't see the need for that as you will have a high quality version stored already.

Upvotes: 1

Related Questions