]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - web/manual.md
mp4: Implement error checking for the write path.
[paraslash.git] / web / manual.md
index 32a99fe27995a7cc6f636ddd7a9e18c0a8ebd57b..78834a4d48be70f178dba5ffed88f5db8761745c 100644 (file)
@@ -1025,6 +1025,7 @@ Keyword              |    Type | Semantic value
 `bitrate`            | integer | The average bitrate
 `frequency`          | integer | The output sample rate
 `channels`           | integer | The number of channels
+`duration`           | integer | The number of milliseconds
 `is_set("foo")`      | boolean | True if attribute "foo" is set.
 
 [\*] For most audio formats, the year tag is stored as a string. It
@@ -2076,11 +2077,11 @@ here are the most important points.
 - Don't leave whitespace at the end of lines.
 - The limit on the length of lines is 80 columns.
 - Use K&R style for placing braces and spaces:
-
+<pre>
                if (x is true) {
                        we do y
                }
-
+</pre>
 - Use a space after (most) keywords.
 - Do not add spaces around (inside) parenthesized expressions.
 - Use one space around (on each side of) most binary and ternary operators.