Skip to content

Instantly share code, notes, and snippets.

View prisme's full-sized avatar

Jérémy Saint-Prix prisme

View GitHub Profile
demo react vs ember vs angular 2015
https://www.youtube.com/watch?v=z5e7kWSHWTg
demo react native 2015
https://www.youtube.com/watch?v=7rDsRXj9-cU
Grafikart jQuery / Angular / ReactJS
https://www.youtube.com/watch?v=LSBWmyuj5qY
Historical yearly trends in the usage of JavaScript libraries for websites
https://play.kahoot.it/#/k/6f08963d-d537-42f9-be61-f599775b24b9
@prisme
prisme / ffmpeg.md
Created October 4, 2020 10:56 — forked from protrolium/ffmpeg.md
ffmpeg guide

ffmpeg

Converting Audio into Different Formats / Sample Rates

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: