ffmprovisr/app/views/layouts/application.html.erb

40 lines
1.8 KiB
Plaintext
Raw Normal View History

2014-08-04 03:43:33 +02:00
<!DOCTYPE html>
<html>
<head>
<title>ffmproviser</title>
<meta charset="utf-8">
2014-08-04 03:43:33 +02:00
<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">
<link rel="stylesheet" href="assets/bootstrap.min.css">
<link href="assets/jquery.steps.css" rel="stylesheet" >
2014-08-04 03:43:33 +02:00
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="assets/forms.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js">
</script>
</head>
<body>
<!-- break div into two here -->
<div class="row">
<div class="container">
<%= yield %>
</div>
<div class="container">
<h3>Making ffmpeg easier</h3>
<p>FFmpeg is a pretty powerful framework for audio-visual materials. Unfortunately, it also has a steep learning curve. 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, here are some resources:</p>
<p>For bash and command line basics, here are some resources:</p> -->
</div>
</div>
2014-08-13 03:21:24 +02:00
<div class="footer text-center">
<p>Made with ♥ by <a href="http://www.ashleyblewer.com">Ashley Blewer</a></p>
</div>
</body>
</body>
2014-08-04 03:43:33 +02:00
</html>