Prototypology/Transcodology-2: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

26 November 2024

  • curprev 00:0800:08, 26 November 2024Joak talk contribs 1,407 bytes +1,407 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:..."