From 5366626046a3017f0f74a7202de85e88b623a61f Mon Sep 17 00:00:00 2001 From: ablwr Date: Sun, 3 Aug 2014 21:16:28 -0400 Subject: [PATCH] added to list, saving in anticipation of upgrade to rails --- index.html | 7 +++++-- js/forms.js | 4 +++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 3a8fd4d..e6f085c 100644 --- a/index.html +++ b/index.html @@ -27,6 +27,9 @@ @@ -35,13 +38,13 @@
Input and Output -
+
-
+
diff --git a/js/forms.js b/js/forms.js index dd3155c..cb0ed6f 100644 --- a/js/forms.js +++ b/js/forms.js @@ -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()) }); });