Skip to main content

How to save all the whatsapp status Videos in android? || Save status videos whatsapp

Solution:

First you have to install the mxplayer app in your phone.

1. Open MXplayer app
2. click the ... symbol that vertically aligned.
3. Select settings -> List and then scroll down and select check the option show hidden files and folders.
4. Close the mxplayer app and reopen.It will show you  .Statuses folder. open it and enjoy getting the status videos.

5. Once you seen the status then it will be appeared in your status folder.It will be automatically deleted within 24 hours.So no worries about the phone storage.

6.If you want to permenantly save the video then forward it to someone or use the file then it will not be deleted....Enjoy posting the status...

Comments

Popular posts from this blog

Local variable for "serviceWorkerVersion" is deprecated in flutter

Problem:  Local variable for "serviceWorkerVersion" is deprecated. Use "{{flutter_service_worker_ version}}" template token instead. See  https://docs.flutter.dev/ platform-integration/web/ initialization  for more details. While try to run my flutter app in chrome it shows the above error. Solution: In script file it shows as like below < script > // The value below is injected by flutter build, do not touch. var serviceWorkerVersion = null ; </ script > Replace with below.It will works fine. < script > // The value below is injected by flutter build, do not touch. var serviceWorkerVersion = "{{flutter_service_worker_ version}}" ; </ script >