Remove the first 2m 54.583s of input.mp3 and save as output.mp3
ffmpeg -i input.mp3 -ss 00:02:54.583 -acodec copy output.mp3
Remove the first 2m 54.583s of input.mp3 and save as output.mp3
ffmpeg -i input.mp3 -ss 00:02:54.583 -acodec copy output.mp3
I use Namecheap.com as a registrar, and they resell SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| # /etc/nginx/sites-enabled/magento | |
| server { | |
| listen 80; | |
| server_name ec2-184-72-68-219.compute-1.amazonaws.com; | |
| root /var/www/magento/; | |
| access_log /var/log/nginx/magento-access_log; | |
| error_log /var/log/nginx/magento-error_log; | |
| location / { |
| #!/bin/bash | |
| # bash generate random alphanumeric string | |
| # | |
| # bash generate random 32 character alphanumeric string (upper and lowercase) and | |
| NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
| # bash generate random 32 character alphanumeric string (lowercase only) | |
| cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 |