WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2024 Poal.co

532

If you don't already have Termux installed check out the /s/Android Wiki for more info and initial setup.

Your external storage can be accessed from ./storage



First you need to install some packages:

  • pkg install libwebp

  • pkg install ffmpeg

  • pkg install imagemagick



To Convert Images:

  • convert "./path/to/source/image.webp" "./path/to/destination/image.jpg"

Works with most image formats. Source image can be a path to a local file or a direct link to an online image.



To Convert Videos:

  • ffmpeg -i "./path/to/source/video.webm" "./path/to/destination/video.mp4"

Supports multiple video formats Source video can be a path to a local file or a direct link to an online video. Video can be converted to audio by setting the destination output to an audio format



To Convert Audio:

  • ffmpeg -i "./path/to/source/audio.wav" "./path/to/destination/audio.mp3"

Same as above but with audio formats

If you don't already have Termux installed check out the [/s/Android Wiki](https://poal.co/s/Android/626012) for more info and initial setup. Your external storage can be accessed from `./storage` --- --- **First you need to install some packages:** - `pkg install libwebp` - `pkg install ffmpeg` - `pkg install imagemagick` --- --- **To Convert Images:** - `convert "./path/to/source/image.webp" "./path/to/destination/image.jpg"` Works with most image formats. Source image can be a path to a local file or a direct link to an online image. --- --- **To Convert Videos:** - `ffmpeg -i "./path/to/source/video.webm" "./path/to/destination/video.mp4"` Supports multiple video formats Source video can be a path to a local file or a direct link to an online video. Video can be converted to audio by setting the destination output to an audio format --- --- **To Convert Audio:** - `ffmpeg -i "./path/to/source/audio.wav" "./path/to/destination/audio.mp3"` Same as above but with audio formats

(post is archived)