search/tweets では一週間以上前のツイートは検索できないので注意
search/universal は公式のConsumerKey/ConsumerSecretでないと使用できない
当方では一切の責任を負いません
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:
| #!/usr/bin/env python | |
| ''' | |
| DEPENDENCIES: | |
| $ brew install ffmpeg | |
| $ brew install imagemagick | |
| $ python ./mov2gif.py input.mov output.gif 15 | |
| ''' |