This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am psilva261 on github. | |
* I am philipsilva (https://keybase.io/philipsilva) on keybase. | |
* I have a public key ASDr2XuUNDFEZUeaAoPrwDMJw3ykAk6fHcHTQX5mnJWQIQo | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ffmpeg = require('fluent-ffmpeg'); | |
var request = require('request'); | |
var httpStream = request('http://www.acme.com/input.mp3'); | |
var proc = new ffmpeg({source: httpStream}) | |
.inputFormat('mp3') | |
/* insert processing steps from | |
https://github.com/fluent-ffmpeg/node-fluent-ffmpeg here */ | |
.save('output.mp3'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Required files: | |
# .crt and .p7b: provided by Godaddy when exporting | |
# .key: self-generated file that was needed to create CSR (Certificate signing request) | |
# | |
# Note: this password has nothing to do with the password entered to create the CSR. | |
# It will be checked once the pfx is uploaded to Azure. | |
$ openssl pkcs12 -export -in www.mydomain.com.crt -inkey www.mydomain.com.key -certfile www.mydomain.com.p7b -out www.mydomain.com.pfx | |
Enter Export Password: | |
Verifying - Enter Export Password: |