mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2024-11-06 13:37:24 +01:00
added to list, saving in anticipation of upgrade to rails
This commit is contained in:
parent
f34e7f9596
commit
5366626046
@ -27,6 +27,9 @@
|
||||
<ul>
|
||||
<li>Display info</li>
|
||||
<li>Export for web</li>
|
||||
<li>Add subtitles track</li>
|
||||
<li>Remove audio track</li>
|
||||
<li>Add audio track</li>
|
||||
</ul>
|
||||
</fieldset>
|
||||
</div>
|
||||
@ -35,13 +38,13 @@
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>Input and Output</legend>
|
||||
<div class="control-group">
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="input_name">Input</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="input_name" id="input_name" placeholder="input" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="form-group">
|
||||
<label class="control-label" for="output_name">Output</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="output_name" id="output_name" placeholder="output" />
|
||||
|
@ -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())
|
||||
});
|
||||
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user