Android changes the sound of any video file

I am trying to apply a new sound tonality to my video file.

I want to replace the audio of my existing video with Android code. Is this possible in android. can anyone help me do this

Does the Android library support this tool to change the sound for a video file?

Any help is appreciated ... !!! Thanks at Advance

+6
source share
1 answer

This is not an exact solution, but you can try:

  • When playing a video file, set its volume to 0.

  • At the same time, use a service in which you can play any sound you want.

  • How the service works in the background, it does not affect streaming video.

  • When your video ends, end your service.

And do not forget to set the volume of the audio file.

+2
source

Source: https://habr.com/ru/post/913958/


All Articles