ffmprovisr/index.html

79 lines
3.6 KiB
HTML
Raw Normal View History

2015-03-21 01:32:55 +01:00
<!DOCTYPE html>
<html>
<head>
<title>ffmprovisr</title>
<meta charset="utf-8">
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
2015-03-21 03:33:41 +01:00
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Sanchez' rel='stylesheet' type='text/css'>
2015-03-21 01:32:55 +01:00
<link rel="stylesheet" href="css/bootstrap.min.css">
2015-03-21 02:05:44 +01:00
<link rel="stylesheet" href="css/css.css">
2015-03-21 01:32:55 +01:00
<link href="css/jquery.steps.css" rel="stylesheet" >
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/forms.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<div class="container">
<div class="text-center">
<h1>➺ ffmprovisr ❥</h1>
<br/>
</div>
2015-03-21 01:53:24 +01:00
<!-- BUTTONS! -->
2015-03-21 01:32:55 +01:00
<div class="row">
2015-03-21 05:15:06 +01:00
<div class="well col-md-3 col-md-offset-0">
2015-03-21 02:14:04 +01:00
<br>
2015-03-21 05:15:06 +01:00
<h5>Making FFmpeg easier</h5>
2015-03-21 03:33:41 +01:00
<p>FFmpeg is a powerful framework for manipulating audiovisual files. Unfortunately, it also has a steep learning curve, especially for users unfamiliar with the command line. This app helps users through the bash command generation process so that more people can reap the benefits of the FFmpeg library. </p>
<p>This project is very much a work in progress. Each button displays a form to help fulfill a popular user request. To use, click on the button and fill out the form. After clicking the Generate button, a command line will appear in the box below. That line can be copied and pasted into a Terminal, with the assumption that the video file is located in the same directory that the user currently is in.</p>
<p>For FFmpeg basics, check out their <a href="https://www.ffmpeg.org/">official website.</a></p>
<p>For bash and command line basics, try the <a href="http://cli.learncodethehardway.org/book/">Command Line Crash Course</a></p>
</div>
2015-03-21 05:15:06 +01:00
<div class="well col-md-6 col-md-offset-2">
2015-03-21 03:33:41 +01:00
<h3>What do you want to do?</h3>
<h5>Select from the following.</h5>
2015-03-21 04:32:17 +01:00
<span id="show_display_info"><button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Displays information about a media file">Display Info</button></span>
2015-03-21 01:32:55 +01:00
</div>
2015-03-21 03:33:41 +01:00
2015-03-21 01:32:55 +01:00
</div> <!-- row -->
2015-03-21 01:53:24 +01:00
<!-- FORMS!-->
2015-03-21 01:32:55 +01:00
<div id="formloader">
2015-11-18 19:39:56 +01:00
<!-- sample example -->
<div class="display_info" style="display:none;">
2015-03-21 01:32:55 +01:00
<div class="well">
2015-11-18 19:39:56 +01:00
<h2>ffmpeg -i [sample file path]</h2>
2015-03-22 19:54:44 +01:00
</div>
<div class="well">
2015-11-18 19:39:56 +01:00
<ul>
2015-11-18 19:52:01 +01:00
<li>ffmpeg : starts the command</li>
<li>-i : i for info dudes!</li>
<li>[sample file path] : path to sample file</li>
2015-11-18 19:39:56 +01:00
</ul>
2015-03-22 19:54:44 +01:00
</div>
<div class="well">
2015-11-18 19:39:56 +01:00
<p>This is all about info! This is all about info! This is all about info! This is all about info! This is all about info! This is all about info! This is all about info! This is all about info! This is all about info! This is all about info! This is all about info! This is all about info! This is all about info! This is all about info! </p>
2015-03-22 19:54:44 +01:00
</div>
</div>
2015-03-21 01:32:55 +01:00
</div> <!-- container -->
2015-03-21 05:15:06 +01:00
<div class="footer text-center">
2015-11-18 19:52:01 +01:00
<p>Made with ♥ at <a href="http://wiki.curatecamp.org/index.php/Association_of_Moving_Image_Archivists_%26_Digital_Library_Federation_Hack_Day_2015">AMIA #AVhack15</a></p>
2015-03-21 01:32:55 +01:00
</div>
</body>
</html>