mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2024-11-10 07:27:23 +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>
|
<ul>
|
||||||
<li>Display info</li>
|
<li>Display info</li>
|
||||||
<li>Export for web</li>
|
<li>Export for web</li>
|
||||||
|
<li>Add subtitles track</li>
|
||||||
|
<li>Remove audio track</li>
|
||||||
|
<li>Add audio track</li>
|
||||||
</ul>
|
</ul>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
@ -35,13 +38,13 @@
|
|||||||
<div class="well">
|
<div class="well">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Input and Output</legend>
|
<legend>Input and Output</legend>
|
||||||
<div class="control-group">
|
<div class="form-group">
|
||||||
<label class="control-label" for="input_name">Input</label>
|
<label class="control-label" for="input_name">Input</label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<input type="text" name="input_name" id="input_name" placeholder="input" />
|
<input type="text" name="input_name" id="input_name" placeholder="input" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<div class="form-group">
|
||||||
<label class="control-label" for="output_name">Output</label>
|
<label class="control-label" for="output_name">Output</label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<input type="text" name="output_name" id="output_name" placeholder="output" />
|
<input type="text" name="output_name" id="output_name" placeholder="output" />
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
|
||||||
$('#generate').click(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