mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2025-03-12 07:20:08 +01:00
10 lines
200 B
JavaScript
10 lines
200 B
JavaScript
$(document).ready(function() {
|
|
|
|
$('#generate').click(function(){
|
|
$('#command_line').val("ffmpeg" +
|
|
" -i " + $('#input_name').val() +
|
|
" -o " + $('#output_name').val())
|
|
});
|
|
|
|
});
|