Compare commits

...

18 Commits

Author SHA1 Message Date
Katherine Frances Nagels
839d50111e Merge pull request #393 from amiaopensource/kn/remove-unnecessary-command
Remove MKV → MP4 command
2019-08-01 07:32:51 +12:00
Reto Kromer
a6dd9c203c update recipe list 2019-07-31 16:50:39 +02:00
kfrn
3402d968a7 Remove MKV → MP4 command
Addressing user feedback received by Andrew Weaver (@privatezero).

When the source file is ffv1 in MKV, the command will fail on the `-c:v copy` flag, since MP4s can't house ffv1.
Therefore, the command is misleading, and has limited value from an archival perspective.

We already have a basic rewrap command (which includes a note addressing the possibility of stream/wrapper incompability), so I think our bases are covered with that.

See https://github.com/amiaopensource/ffmprovisr/issues/392
2019-07-31 23:37:53 +12:00
Reto Kromer
283756f8cf Merge pull request #390 (Revert "update recipe list") 2019-07-19 19:34:49 +02:00
Ashley
d28ae29f5c Merge pull request #389 from amiaopensource/revert-387-issue-383
Revert "Adds mapping all audio to access script"
2019-07-19 13:33:24 -04:00
Reto Kromer
2be5576012 Revert "update recipe list" 2019-07-19 19:25:01 +02:00
Ashley
43c98527a7 Revert "Adds mapping all audio to access script" 2019-07-19 13:11:06 -04:00
Reto Kromer
164d757309 Merge pull request #388 (update recipe list) 2019-07-17 19:14:07 +02:00
Ashley
2a87a120c3 Merge pull request #387 from amiaopensource/issue-383
Adds mapping all audio to access script
2019-07-17 12:42:07 -04:00
Ashley
fbe5f216a7 patch linebreaks 2019-07-17 12:40:50 -04:00
Reto Kromer
f93922a9c3 update recipe list 2019-07-17 18:34:00 +02:00
Ashley Blewer
e06a76f559 Adds mapping all audio to access script 2019-07-17 12:08:14 -04:00
Ashley
0279c1d842 Merge pull request #385 from amiaopensource/fix-intrapage-anchor-bug
Fix intrapage anchor bug
2019-07-15 11:49:40 -04:00
Ashley Blewer
7e72b1c254 Links updates within categories #384 2019-07-13 21:38:38 -04:00
Ashley Blewer
07fe8bf966 Move repeated JS into functions 2019-07-13 18:41:44 -04:00
Ashley Blewer
c32a7f44ad Supports intralinking for recipes 2019-07-13 17:52:49 -04:00
Ashley
ea2c29a38c Merge pull request #382 from mipops/gh-pages
Add Micropops to Sister Projects
2019-07-02 18:26:14 -04:00
A. Lavigne
d624a3fc11 Add Micropops to Sister Projects 2019-07-02 15:08:23 -07:00
3 changed files with 26 additions and 34 deletions

View File

@@ -62,6 +62,7 @@
<span class="intro-lead">Sister projects</span>
<p><a href="https://dd388.github.io/crals/" target="_blank">Script Ahoy</a>: Community Resource for Archivists and Librarians Scripting</p>
<p><a href="https://datapraxis.github.io/sourcecaster/" target="_blank">The Sourcecaster</a>: an app that helps you use the command line to work through common challenges that come up when working with digital primary sources.</p>
<p><a href="https://pugetsoundandvision.github.io/micropops/" target="_blank">Micropops</a>: One liners and automation tools from Moving Image Preservation of Puget Sound</p>
<p><a href="https://amiaopensource.github.io/cable-bible/" target="_blank">Cable Bible</a>: A Guide to Cables and Connectors Used for Audiovisual Tech</p>
</div>
@@ -212,28 +213,6 @@
</div>
<!-- End Basic rewrap command -->
<!-- MKV to MP4 -->
<label class="recipe" for="mkv_to_mp4">Convert Matroska (MKV) to MP4</label>
<input type="checkbox" id="mkv_to_mp4">
<div class="hiding">
<h3>MKV to MP4</h3>
<p><code>ffmpeg -i <em>input_file</em>.mkv -c:v copy -c:a aac <em>output_file</em>.mp4</code></p>
<p>This will convert your Matroska (MKV) files to MP4 files.</p>
<dl>
<dt>ffmpeg</dt><dd>starts the command</dd>
<dt>-i <em>input_file</em></dt><dd>path and name of the input file<br>
The extension for the Matroska container is <code>.mkv</code>.</dd>
<dt>-c:v copy</dt><dd>copies the video stream without re-encoding it</dd>
<dt>-c:a aac</dt><dd>re-encodes the audio stream using the AAC audio codec<br>
Note that sadly MP4 cannot contain sound encoded by a PCM (Pulse-Code Modulation) audio codec.<br>
For silent videos you can replace <code>-c:a aac</code> by <code>-an</code>, which means that there will be no audio track in the output file.</dd>
<dt><em>output_file</em></dt><dd>path and name of the output file<br>
The extension for the MP4 container is <code>.mp4</code>.</dd>
</dl>
<p class="link"></p>
</div>
<!-- ends MKV to MP4 -->
<!-- Rewrap DV -->
<label class="recipe" for="rewrap-dv">Rewrap DV video to .dv file</label>
<input type="checkbox" id="rewrap-dv">

View File

@@ -1,23 +1,38 @@
$(document).ready(function() {
// open recipe window if a hash is found in URL
if(window.location.hash) {
id = window.location.hash
console.log(id.substring(1))
function appendLink(id) {
$(id).next('div').find('.link').empty();
$(id).next('div').find('.link').append("<small>Link to this command: <a href='https://amiaopensource.github.io/ffmprovisr/index.html" + id + "'>https://amiaopensource.github.io/ffmprovisr/index.html" + id + "</a></small>");
}
function moveToRecipe(id) {
document.getElementById(id.substring(1)).checked = true;
$('html, body').animate({ scrollTop: $(id).offset().top}, 1000);
$(id).closest('div').find('.link').empty();
$(id).closest('div').find('.link').append("<small>Link to this command: <a href='https://amiaopensource.github.io/ffmprovisr/index.html"+window.location.hash+"'>https://amiaopensource.github.io/ffmprovisr/index.html"+window.location.hash+"</a></small>");
$('html, body').animate({ scrollTop: $(id).offset().top }, 1000);
appendLink(id)
}
// open recipe window if a hash is found in URL
if (window.location.hash) {
id = window.location.hash
moveToRecipe(id)
}
// add hash URL when recipe is opened
$('label[class="recipe"]').on("click", function(){
id = $(this).attr("for");
window.location.hash = ('#' + id)
$('#' + id).closest('div').find('.link').empty();
$('#' + id).closest('div').find('.link').append("<small>Link to this command: <a href='https://amiaopensource.github.io/ffmprovisr/index.html"+window.location.hash+"'>https://amiaopensource.github.io/ffmprovisr/index.html"+window.location.hash+"</a></small>");
});
appendLink('#' + id)
})
// open recipe when clicked
$('a').on("click", function(){
intralink = $(this).attr("href")
if (intralink[0] == "#") {
moveToRecipe(intralink)
}
})
// open all windows if button is clicked
$('#open-all').on("click", function(){
$('input[type=checkbox]').each(function(){
this.checked = !this.checked;

View File

@@ -1,7 +1,5 @@
# Basic rewrap command
ffmpeg -i input_file.ext -c copy -map 0 output_file.ext
# Convert Matroska (MKV) to MP4
ffmpeg -i input_file.mkv -c:v copy -c:a aac output_file.mp4
# Rewrap DV video to .dv file
ffmpeg -i input_file -f rawvideo -c:v copy output_file.dv
# Transcode to deinterlaced Apple ProRes LT