Skip to main content

Posts

Showing posts from July, 2024

Change default audio track from Android

 Change default audio track of Video from Android itself! It is very annoying to select your desired audio track or language every time after playing a video.  Looking for a way to force play the audio track after playing the video? Here is the solution.  Download termux Follow steps for changing 'track 2' to default audio track. After downloading, type following commands in termux. pkg update && pkg upgrade pkg install ffmpeg -y termux-setup-storage   (android window will open. Search and allow termux for enabling storage access) cd /sdcard (file must be in internal storage) ls (this will give list of folders, navigate to folder containing video file) ffmpeg -i "name of your video file with extension" -map 0:v:0 -map 0:a:1 -map 0:a:0 -c copy "name of your output file with extension" Done!