Compare commits

...

5 Commits

Author SHA1 Message Date
Ashley
08fa75b823 Merge pull request #147 from amiaopensource/relative_link
make link relative
2017-02-20 12:01:09 -05:00
Reto Kromer
2b47f5dd0b make link relative
Otherwise it doesn’t work locally.
2017-02-20 16:42:02 +01:00
Ashley
745790c1f0 Merge pull request #146 from amiaopensource/releases
add releases
2017-02-19 20:04:03 -05:00
Reto Kromer
28e66b3ba1 typo 2017-02-18 15:03:22 +01:00
Reto Kromer
a9c99ee3ae add releases 2017-02-18 07:34:05 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -958,7 +958,7 @@ foreach ($file in $inputfiles) {
<dt>{</dt><dd>Opens the code block.</dd>
<dt>$output = [io.path]::ChangeExtension($file, '.mkv')</dt><dd>Sets up the output file: it will be located in the current folder and keep the same filename, but will have an .mkv extension instead of .mp4.</dd>
<dt>ffmpeg -i $file</dt><dd>Carry out the following ffmpeg command for each input file.<br>
<strong>Note</strong>: To call ffmpeg here as just ffmpeg (rather than entering the full path to ffmpeg.exe), you must make sure that it's correctly configured. See <a href="http://adaptivesamples.com/how-to-install-ffmpeg-on-windows/">this article</a>, especially the section Add to Path.</dd>
<strong>Note</strong>: To call ffmpeg here as just ffmpeg (rather than entering the full path to ffmpeg.exe), you must make sure that its correctly configured. See <a href="http://adaptivesamples.com/how-to-install-ffmpeg-on-windows/">this article</a>, especially the section Add to Path.</dd>
<dt>-map 0</dt><dd>retain all streams</dd>
<dt>-c copy</dt><dd>enable stream copy (no re-encode)</dd>
<dt>$output</dt><dd>The output file is set to the value of the <code>$output</code> variable declared above: i.e., the current file name with an .mkv extension.</dd>
@@ -990,7 +990,7 @@ foreach ($file in $inputfiles) {
<dt>-an</dt><dd>ignores the audio stream (audio no)</dd>
<dt><i>output_file</i></dt><dd>path, name and extension of the output file</dd>
</dl>
<p>You may verify an MD5 checksum file created this way by using a <a href="https://github.com/amiaopensource/ffmprovisr/blob/gh-pages/check_framemd5.sh" target="_blank">Bash script</a>.</p>
<p>You may verify an MD5 checksum file created this way by using a <a href="check_framemd5.sh" target="_blank">Bash script</a>.</p>
<p class="link"></p>
</div>
</div>

View File

@@ -8,7 +8,7 @@ Project Objective: To facilitate better understanding of FFmpeg through collabor
## How do I see it?
Code stuff in the gh-pages branch (the default primary branch). Readme is right here. The site is live and lives on github pages. You can see it [here](http://amiaopensource.github.io/ffmprovisr).
Code stuff in the gh-pages branch (the default primary branch). Readme is right here. The site is live and lives on github pages. You can see it [here](http://amiaopensource.github.io/ffmprovisr), or you can download a [release](https://github.com/amiaopensource/ffmprovisr/releases) and use it locally.
## How do I contribute?