All public logs

Combined display of all available logs of XPUB & Lens-Based wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 00:08, 26 November 2024 Joak talk contribs created page Prototypology/Compressology-2 (Created page with "= How to compress audio? = == Why compressing audio? == * Which formats can be used on a web page? ** [https://caniuse.com/?search=mp3 mp3] ** [https://caniuse.com/?search=ogg ogg] ** [https://caniuse.com/?search=opus opus] == The fancy and hard way == Uses FFmpeg. FFmpeg is a powerful, open-source tool for decoding, encoding, and manipulating multimedia files. <pre> ffmpeg -i input.wav -b:a 128k output.mp3 </pre> * the option "-i" is the input file * the option "-b:...")