Displaying 2 results from an estimated 2 matches for "yourbox".
Did you mean:
courbot
2007 Sep 26
3
OpenSSH multiple private key question
I am using CentOS 4.5 with OpenSSH_3.9p1 and I am curious if anyone
has a solution for this scenario. I have several pub/priv keys that I
use for various tasks/reasons. My issue is that I want to have 2
private keys stored in ~/.ssh/ and I am not sure the best way to
accomplish that. Currently I am using ssh-agent, and it works fine
for manually performing tasks. I was curious if there
2009 May 20
3
ffmpeg + mp3 convert
Hi all,
I am using paperclip plugin to upload mp3''s. Before I save the mp3 I
would like to convert it to a smaller size.
I am using ffmpeg library and in my Track model I am calling:
before_save :convert_mp3
def convert_mp3
system("ffmpeg -i #{mp3.to_file.path} -vn -ar 44100 -ac 2 -ab 64 -f
mp3 #{mp3.to_file.path}")
end
But this fails. Am I missing something?