Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
You can get the list of installed codecs with:
| #!/usr/bin/env python3 | |
| # Python Version: 3.4.2 | |
| # bs4 version: 4.3.2-2 | |
| from urllib.request import urlopen | |
| from bs4 import BeautifulSoup | |
| import pickle | |
| links = [] |