From: Josh Coalson Date: Sat, 21 Dec 2002 04:50:22 +0000 (+0000) Subject: minor updates X-Git-Tag: 1.2.0~1234 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=adcc4a1dbfbc87c6d6b7d03ecd6fb8dc7d294679;p=platform%2Fupstream%2Fflac.git minor updates --- diff --git a/doc/html/documentation.html b/doc/html/documentation.html index f9abefa..2ca07c4 100644 --- a/doc/html/documentation.html +++ b/doc/html/documentation.html @@ -132,7 +132,7 @@ FLAC defines several types of metadata blocks (see the format page for the complete list). Metadata blocks can be any length and new ones can be defined. A decoder is allowed to skip any metadata types it does not understand. Only one is mandatory: the STREAMINFO block. This block has information like the sample rate, number of channels, etc., and data that can help the decoder manage its buffers, like the minimum and maximum data rate and minimum and maximum block size. Also included in the STREAMINFO block is the MD5 signature of the unencoded audio data. This is useful for checking an entire stream for transmission errors.

- Other blocks allow for padding, seek tables, and application-specific data. You can see flac options below for adding PADDING blocks or specifying seek points. FLAC does not require seek points for seeking but they can speed up seeks, or be used for cueing in editing applications. + Other blocks allow for padding, seek tables, tags, cuesheets, and application-specific data. You can see flac options below for adding PADDING blocks or specifying seek points. FLAC does not require seek points for seeking but they can speed up seeks, or be used for cueing in editing applications.

Also, if you have a need of a custom metadata block, you can define your own and request an ID here. Then you can reserve a PADDING block of the correct size when encoding, and overwrite the padding block with your APPLICATION block after encoding. The resulting stream will be FLAC compatible; decoders that are aware of your metadata can use it and the rest will safely ignore it. @@ -226,7 +226,7 @@ Encoding: flac [<general-options>] [<format-options>] [<encoding options>] [inputfile [...]]
  • - Decoding: flac -d [<general-options>] [<format-options>] [FLACfile [...]] + Decoding: flac -d [<general-options>] [<format-options>] [<decoding options>] [FLACfile [...]]
  • Testing: flac -t [<general-options>] [FLACfile [...]] @@ -372,7 +372,7 @@ Skip over the first # of samples of the input. This works for both encoding and decoding, but not testing. The alternative form mm:ss.ss can be used to specify minutes, seconds, and fractions of a second.

    Examples:

    --skip=123 : skip the first 123 samples of the input

    - --skip=1:23.45 : skip the first 1 minute and 23.45 samples of the input + --skip=1:23.45 : skip the first 1 minute and 23.45 seconds of the input @@ -380,11 +380,11 @@ --until={#|[+|-]mm:ss.ss} - Stop at the given sample number for each input file. This works for both encoding and decoding, but not testing. The given sample number is not included in the decoded output. The alternative form mm:ss.ss can be used to specify minutes, seconds, and fractions of a second. If a + sign is at the beginning, the --until point is relative to the --skip point. If a - sign is at the beginning, the --until point is relative to end of the audio.

    + Stop at the given sample number for each input file. This works for both encoding and decoding, but not testing. The given sample number is not included in the decoded output. The alternative form mm:ss.ss can be used to specify minutes, seconds, and fractions of a second. If a + sign is at the beginning, the --until point is relative to the --skip point. If a - sign is at the beginning, the --until point is relative to end of the audio.

    Examples:

    --until=123 : decode only the first 123 samples of the input (samples 0-122, stopping at 123)

    --until=1:23.45 : decode only the first 1 minute and 23.45 seconds of the input

    - --skip=1:00 --until=+1:23.45 : decode 1:00 to 2:23.45

    + --skip=1:00 --until=+1:23.45 : decode 1:00.00 to 2:23.45

    --until=-1:23.45 : decode everything except the last 1 minute and 23.45 seconds

    --until=-0:00 : decode until the end of the input (the same as not specifying --until) @@ -493,7 +493,7 @@ --cuesheet=FILENAME - Import the given cuesheet file and store it in a CUESHEET metadata block. This option may only be used when encoding a single file. A seekpoint will be added for each index point in the cuesheet to the SEEKTABLE unless --no-cued-seekpoints is specified.

    + Import the given cuesheet file and store it in a CUESHEET metadata block. This option may only be used when encoding a single file. A seekpoint will be added for each index point in the cuesheet to the SEEKTABLE unless --no-cued-seekpoints is specified.

    The cuesheet file must be of the sort written by CDRwin, CDRcue, EAC, et al.