CLICK ME
yes, even hidden code blocks!
print("hello world!")| *.iml | |
| *.iml.* | |
| .gradle | |
| *build | |
| *.idea | |
| *.log | |
| *.apk | |
| local.properties | |
| .DS_Store | |
| /captures |
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:
This guide on how to convert an SVN repository to a git repository was mostly taken from John Albin Wilkins post on Converting a Subversion repository to Git.