Fixed typos

Added note about quotes and escapes when using white spaces
This commit is contained in:
Mattias Wadman 2008-10-19 15:16:04 +00:00
parent 539f2e0460
commit 10fc6c0dab

View file

@ -52,17 +52,18 @@
Support format strings:<br>
<table class="hts-doc-text" border="0">
<tr><th>Format</th><th>Description</th><th>Example value</th></tr>
<tr><td>%f</td><td>Full path to recoding</td><td>/home/user/Videos/News.mkv</td></tr>
<tr><td>%b</td><td>Basename of recoding</td><td>News.mkv</td></tr>
<tr><td>%f</td><td>Full path to recording</td><td>/home/user/Videos/News.mkv</td></tr>
<tr><td>%b</td><td>Basename of recording</td><td>News.mkv</td></tr>
<tr><td>%c</td><td>Channel name</td><td>BBC world</td></tr>
<tr><td>%C</td><td>Who created this recoding</td><td>user</td></tr>
<tr><td>%C</td><td>Who created this recording</td><td>user</td></tr>
<tr><td>%t</td><td>Program title</td><td>News</td></tr>
<tr><td>%c</td><td>Program description</td><td>News and stories...</td></tr>
<tr><td>%S</td><td>Start timestmap of recoding, UNIX epoch</td><td>1224421200</td></tr>
<tr><td>%E</td><td>Stop timestamp of recoding, UNIX epoch</td><td>1224426600</td></tr>
<tr><td>%S</td><td>Start timestmap of recording, UNIX epoch</td><td>1224421200</td></tr>
<tr><td>%E</td><td>Stop timestamp of recording, UNIX epoch</td><td>1224426600</td></tr>
</table>
<br>
Example usage: /path/to/ffmpeg -i %f -vcodec libx264 -acodec copy "/path/with white space/%b"
Example usage: /path/to/ffmpeg -i %f -vcodec libx264 -acodec copy "/path/with white space/%b"<br>
You need to use quotes or escape white spaces if you want white spaces in an argument.
</dl>
Changes to any of these settings must be confirmed by pressing the
'Save configuration' button before taking effect.