mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2025-11-19 10:07:47 +01:00
Compare commits
8 Commits
v2017-12-0
...
v2017-12-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1fec9b21c8 | ||
|
|
42189e5b94 | ||
|
|
929f92a52a | ||
|
|
02e2f11718 | ||
|
|
10636e24e2 | ||
|
|
61b890d31c | ||
|
|
85a79d2eb5 | ||
|
|
b5ec56174a |
24
index.html
24
index.html
@@ -1224,6 +1224,25 @@
|
||||
</div>
|
||||
<!-- ends Burn in timecode -->
|
||||
|
||||
<!-- Embed subtitles-->
|
||||
<label class="recipe" for="embed_subtitles">Embed subtitles</label>
|
||||
<input type="checkbox" id="embed_subtitles">
|
||||
<div class="hiding">
|
||||
<h3>Embed a subtitle file into a movie file </h3>
|
||||
<p><code>ffmpeg -i <i>input_file</i> -i <i>subtitles_file</i> -c copy -c:s mov_text <i>output_file</i></code></p>
|
||||
<dl>
|
||||
<dt>ffmpeg</dt><dd>starts the command</dd>
|
||||
<dt>-i <i>input_file</i></dt><dd>path, name and extension of the input file</dd>
|
||||
<dt>-i <i>subtitles_file</i></dt><dd>path to subtitles file, e.g. <code>subtitles.srt</code></dd>
|
||||
<dt>-c copy</dt><dd>enable stream copy (no re-encode)</dd>
|
||||
<dt>-c:s mov_text</dt><dd>Encode subtitles using the <code>mov_text</code> codec. Note: The <code>mov_text</code> codec works for MP4 and MOV containers. For the MKV container, acceptable formats are <code>ASS</code>, <code>SRT</code>, and <code>SSA</code>.</dd>
|
||||
<dt><i>output_file</i></dt><dd>path, name and extension of the output file</dd>
|
||||
</dl>
|
||||
<p>Note: <code>-c:s</code> is a shortcut for <code>-scodec</code></p>
|
||||
<p class="link"></p>
|
||||
</div>
|
||||
<!-- ends Embed subtitles -->
|
||||
|
||||
</div>
|
||||
<div class="well">
|
||||
<h2 id="create-images">Create thumbnails or GIFs</h2>
|
||||
@@ -1530,10 +1549,11 @@
|
||||
<dt>ffmpeg</dt><dd>starts the command</dd>
|
||||
<dt>-i <i>input_file</i></dt><dd>path, name and extension of the input file</dd>
|
||||
<dt>-map_metadata -1</dt><dd>sets metadata copying to -1, which copies nothing</dd>
|
||||
<dt>-vcodec copy</dt><dd>copies video track</dd>
|
||||
<dt>-acodec copy</dt><dd>copies audio track</dd>
|
||||
<dt>-c:v copy</dt><dd>copies video track</dd>
|
||||
<dt>-c:a copy</dt><dd>copies audio track</dd>
|
||||
<dt><i>output_file</i></dt><dd>Makes copy of original file and names output file</dd>
|
||||
</dl>
|
||||
<p>Note: <code>-c:v</code> and <code>-c:a</code> are shortcuts for <code>-vcodec</code> and <code>-acodec</code>.</p>
|
||||
<p class="link"></p>
|
||||
</div>
|
||||
<!-- ends Strip metadata -->
|
||||
|
||||
Reference in New Issue
Block a user