added to list, saving in anticipation of upgrade to rails

This commit is contained in:
ablwr
2014-08-03 21:16:28 -04:00
parent f34e7f9596
commit 5366626046
2 changed files with 8 additions and 3 deletions

View File

@@ -1,7 +1,9 @@
$(document).ready(function() {
$('#generate').click(function(){
$('#command_line').val("ffmpeg " + $('#input_name').val() + " " + $('#output_name').val())
$('#command_line').val("ffmpeg" +
" -i " + $('#input_name').val() +
" -o " + $('#output_name').val())
});
});