Each of these examples assume the usage of --strict mode in Typescript
Can be implemented using “Custom Types” https://guide.elm-lang.org/types/custom_types.html
| primary: | |
| background: '#181818' | |
| foreground: '#C7C7C7' | |
| normal: | |
| black: '#000000' | |
| red: '#CD3131' | |
| green: '#0DBC79' | |
| yellow: '#E5E510' | |
| blue: '#2472C8' | |
| magenta: '#BC3FBC' |
Each of these examples assume the usage of --strict mode in Typescript
Can be implemented using “Custom Types” https://guide.elm-lang.org/types/custom_types.html
Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
Convert WAV to MP3, mix down to mono (use 1 audio channel), set bit rate to 64 kbps and sample rate to 22050 Hz: